UNPKG

node-nutch

Version:

A set of Gulp commands that provide similar functionality to Apache Nutch.

15 lines (12 loc) 298 B
/** * Class to handle crawl state: */ var CrawlState = function (now){ this.state = CrawlState.UNFETCHED; this.fetchTime = now; }; CrawlState.UNFETCHED = 'unfetched'; CrawlState.GENERATED = 'generated'; CrawlState.FETCHED = 'fetched'; CrawlState.GONE = 'gone'; module.exports = CrawlState;