UNPKG

crawler

Version:

Crawler is a web spider written with Nodejs. It gives you the full power of jQuery on the server to parse a big number of pages as they are downloaded, asynchronously

9 lines (8 loc) 209 B
'use strict'; var util = require('util'); var crawler = require('./crawler'); module.exports = function debug() { if (crawler.debug) { console.error('CRAWLER %s', util.format.apply(util, arguments)); } };