1.1.0 • Published 8 years ago
noveljs v1.1.0
noveljs
scraping the novel
Installation
npm install -S noveljs
Usage
To use noveljs
, you have to setup some sources like noveljs-sources.
import noveljs from 'noveljs';
import sources from 'noveljs-sources';
noveljs.use(sources);
noveljs.fetch('http://www.example.com/', function (data, error) {
if (!error) {
// do something with data
}
});