ninjs-html
Version:
web crawling engine using cheerio for html/dom manipulation and templating
27 lines (22 loc) • 593 B
JavaScript
const _ = require('ninjs-lodash')
const html = require('../')
const _NAME = _.path.name(__filename)
const _NS = `ninjs.html.test.${_NAME}`
const _URL = 'http://www.howtogeek.com/'
const _URLB= 'http://www.howtogeek.com/howto/windows-vista/disable-caps-lock-key-in-windows-vista/'
const _URL_USER = 'https://soundcloud.com/everything_electronic'
module.exports = {
NAME: _NAME,
NS: _NS,
DIR: __dirname,
FILE: __filename,
run: run,
load: load
}
function run(options) {
load()
}
function load() {
return _.implement(`${_NS}.load`)
}