New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

omdb-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

omdb-wrapper

A wrapper to work with the OMDb Web API

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

Spotify Wrapper

Build Status Coverage Status

A wrapper to work with the OMDb Web API.

Browser Support

This library relies on Fetch API. And this API is supported in the following browsers.

ChromeFirefoxOperaSafariIE
39+ ✔42+ ✔29+ ✔10.1+ ✔Nope ✘

Dependencies

This library depends on fetch to make requests to the OMDb Web API. For environments that don't support fetch, you'll need to provide a polyfill to browser or polyfill to Node.

Installation

$ npm install omdb-wrapper --save

How to use

ES6

// to import a specific method
import OMDb from 'omdb-wrapper';


// using  method
OMDb.search.movies('harry+potter');

CommonJS

const omdbWrapper = require('omdb-wrapper').default;

const omdb = new omdbWrapper({
  apiKEY: 'YOUR_API_KEY_HERE'
});

UMD in Browser

<!-- to import non-minified version -->
<script src="omdb-wrapper.umd.js"></script>

<!-- to import minified version -->
<script src="omdb-wrapper.umd.min.js"></script>

After that the library will be available to the Global as OmdbWrapper. Follow an example:


const omdb = new omdbWrapper({
  apiKEY: 'YOUR_API_KEY_HERE'
});

const movies = omdb.search.movies('choosen movie');

Methods

Follow the methods that the library provides.

search.movies(query)

Search for informations about Movies with provided query. Test in OMDb Web.

Arguments

ArgumentTypeOptions
querystring'Any search query'

Example

omdb.search.movies('harry+potter')
  .then(data => {
    // do what you want with the data
  })

movie.getMovie(id)

Search for informations about a specific Movie with provided id. Test in OMDb Web.

Arguments

ArgumentTypeOptions
idstring'Specific id'

Example

omdb.movie.getMovie('tt1201607')
  .then(data => {
    // do what you want with the data
  })

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

Matheus Roversi
Matheus Roversi

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Keywords

js

FAQs

Package last updated on 14 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts