web-walker
v1.0.1
Published
Recursive walk over all links and which were found
Downloads
1
Readme
Recursive walk over all links and which were found
How to use
var webvisitor = require('web-visitor')
var urls = ['https://www.npmjs.com/package/web-walker'];
webvisitor(urls, onProgress, onComplete);
function onProgress (error, response) {
//...
}
function onComplete() {
//...
}
Installation
$ npm install web-inspector