Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

imdb-api

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imdb-api - npm Package Versions

13

3.1.1

Diff

Changelog

Source

Version 3.1.1 -> 3.1.2

  • Fixes #54
  • Fixes #51
  • lots of modernization and enabling of tslint
worr
published 3.1.0 •

Changelog

Source

Version 3.0.0 -> 3.1.0

This adds searching for movies and items from omdb.

imdb.search({title: 'foo'}, {apiKey: 'bar'}).then(console.log);

This also adds supports for timeouts

imdb.get('The Toxic Avenger', {apiKey: 'foo', timeout: 30}).then(console.log);
worr
published 3.0.0 •

Changelog

Source

Version 3.0.0 -> 3.1.0

This adds searching for movies and items from omdb.

imdb.search({title: 'foo'}, {apiKey: 'bar'}).then(console.log);

This also adds supports for timeouts

imdb.get('The Toxic Avenger', {apiKey: 'foo', timeout: 30}).then(console.log);
worr
published 2.2.2 •

Changelog

Source

Version 2.2.2 -> 3.0.0

This is a breaking change

  • Added support for passing in options to all get functions
  • Require an apiKey option for authentication to omdb
imdb.get('The Toxic Avenger', {apiKey: 'foo'}).then(function(data) { console.log(data); });

To see more about getting a key, see here

worr
published 2.2.1 •

Changelog

Source

Version 2.2.1 -> 2.2.2

  • Fixed broken date parsing (PR)
worr
published 2.2.0 •

Changelog

Source

Version 2.2.0 -> 2.2.1

  • Bug fixes
worr
published 2.1.0 •

Changelog

Source

Version 2.1.0 -> 2.2.0

  • Added promise API

Promises

imdb.get('The Toxic Avenger').then(function(data) { console.log(data); });
worr
published 2.0.0 •

Changelog

Source

Version 2.0.0 -> 2.1.0

  • Adds the ability to filter by year

Filtering by year

imdb.getReq({name: 'James Bond', year: 2015}, function(err, data) { console.log(data) });
worr
published 1.3.3 •

Changelog

Source

Version 1.3.3 -> 2.0.0

Version 2.0 is a breaking change. The APIs that I was using disappeared, and I switched over to using omdb. Most of the functions and the objects returned are similar, with some additional properties (and some removed).

Removed properties

The following properties have been removed from all movie/tv show/episode objects that are returned to callbacks.

  • stv
  • usascreens
  • ukscreens

Renamed properties

The following properties have been renamed in order to not conflict with builtins or to better describe what the property means

  • Episode.number -> Episode.episode

Retyped properties

Some properties have new types for convenience.

  • Episode.released: string -> Date
  • Movie.released: string -> Date
  • Movie.series: number -> boolean

Changed callback signatures

  • The episodes call now just passes a list of episodes to the callback
worr
published 1.3.2 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc