npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

simple-omdb

v0.0.3

Published

Simple javascript wrapper for OMDB API

Downloads

6

Readme

OMDB API Wrapper

Simple Javascript wrapper for interacting with the Open Movie Database (OMDB) API. It allows users to search for movies and TV series, retrieve detailed information about specific titles, and more.

⚙ Installation

To use this wrapper in your project, you can install it via npm:

npm install simple-omdb

📥 Import

// Using Modules
import { OMDB } from "simple-omdb";

// OR

// Using Common JS
const { OMDB } = require("simple-omdb");

🌄 Initialization

You need to get api key from here OMDB API

// Initialize OMDB with your API key
const omdb = new OMDB("your_api_key_here");

💻 Usage

Get Search Results

// SEARCH FOR MOVIES OR SERIES

// Returns list of movies or series related to "Avengers"
const results = await omdb.search("Avengers");

// Return list of results realted to "avengers" and added options
const results = await omdb.search("Avengers", {
  // These options are optional
  year: 2019, // search by year
  type: "movie", // search only for movies (movie | series)
  page: 1, // page number for results
});

// ===== GET ONLY MOVIE RESULTS =====

// Return list of movies related to avengers
const movieResults = await omdb.searchMovies("Avengers");

// Return list of movies related to avengers released in 2019
const movieResults = await omdb.searchMovies("avengers", {
  // Extra Options - these option are Optional
  year: 2019,
});

// Avaliable Extra Options for MOVIES
{
  year: 2019; // realease year
  page: 1; // results page number
}

// ===== GET ONLY TV SERIES RESULTS =====

const seriesResults = await omdb.searchMovies("See");

// Return list of series related to "see" released in 2019
const seriesResults = await omdb.searchMovies("avengers", {
  // Extra Options - these option are Optional
  year: 2019,
});

// Avaliable Extra Options for SERIES
{
  year: 2019; // realease year
  page: 1; // results page number
}

Get Single Movie or Series By IMDB ID

// Return movie or series information related to input id
const result = await omdb.getById("imdbid-here");

Get Single Movie or Series By Name

// Return best matching movie or series for input name
const result = await omdb.getOneByName("movie or series name");

// Filter Result with optional params
const result = await omdb.getOneByName("movie or series name",{
    // these options are optional
    type:"movie" // only search for movies (movie | series)
    year: 2019 // filter by year
    plot:"short" // How plot info should return short info or full info
})

// GET ONLY SINGLE MOVIE

const movie = await omdb.getMovieByName("moviename")

// With extra options - optional
const movie = await omdb.getMovieByName("moviename",{
    year : 2019 // release year
    plot : "full" // plot length short or full
})

// GET ONLY SINGLE SERIES

// return best matching series for "seriesname"
const series = await omdb.getSeriesByName("seriesname")

// With extra options - optional
const movie = await omdb.getSeriesByName("seriesname",{
    year : 2019 // release year
    plot : "short" // plot length short or full
})

🍃 Contributing

Contributions are welcome! If you have any bug reports, or improvements, feel free to open an issue or create a pull request.