noveljs
v1.1.0
Published
scraping the novel
Downloads
3
Readme
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
}
});