1.0.1 • Published 9 years ago

web-walker v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
9 years ago

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