imdb-rscraper

0.0.2 • Public • Published

What this scraper does ?

Parse the content from given IMDB site and then returns data in JSON format. Currently it does not support much of content which can be taken from IMDB.

How to use

JQuery should pass in as string,

var fs = require('fs')
  , imdb = require('../imdb-rscraper').imdbrscraper
  , jquery = fs.readFileSync('./jquery.min.js').toString();

imdb('http://www.imdb.com/title/tt0348836/', jquery, function(resultData) { 
	console.log(resultData); 
});

Also now there is support for searching movie from imdb so you don't have to give direct link. The downside of this kind query is that it makes extra request so it's a bit slower.

imdb('the ring', jquery, function(resultData) { 
	console.log(resultData); 
});

Readme

Keywords

none

Package Sidebar

Install

npm i imdb-rscraper

Weekly Downloads

3

Version

0.0.2

License

none

Last publish

Collaborators

  • riston