0.3.0 • Published 3 years ago

node-imdb v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

node-imdb

a nodejs library to get data from imdb

Example

const { searchMovie, getMovie } = require('node-imdb');
// or
import { searchMovie, getMovie } from 'node-imdb';
async function searchMovieExample(title) {
  const result = await searchMovie(title);
  console.log(result);
}

searchMovieExample('Game of Thorns');

async function getMovieExample(id) {
  const result = await getMovie(id);
  console.log(result);
}

getMovieExample('tt0944947');
0.3.0

3 years ago

0.2.6

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.2.3

3 years ago