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

imdb-trivia

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imdb-trivia

A NodeJS library for fetching IMDb movie trivia

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

imdb-trivia Build Status

Get IMDb's movie trivia

Since IMDb has no API for this we're forced to scrape the movie's trivia page.

Install

$ npm install --save imdb-trivia

Usage

const imdbTrivia = require('imdb-trivia');

imdbTrivia('tt0137523', function (err, movie) {
  if (err) {
    return console.log(err);
  }

  console.log(movie);

  /*
  {
    title: 'Fight Club (1999)',
    trivia_count: 161,
    trivia: [...]
  }
  */
});

License

MIT © Gabriel Montalvo

Keywords

FAQs

Package last updated on 27 Dec 2016

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

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