han-utils
v1.0.9
Published
a powerful nodejs module, we called be han-http-utils
Downloads
2
Readme
han-utils 封装常用工具类。
version : 1.0.0 update by 2017-04-13
method list :
- loadir by path HCommonUtils.loadDir(dir);
demo :
module/a.js : module.exports = function () { console.log('module a'); }
module/b.js : module.exports = function () { console.log('module b'); } module/hello/b.js : module.exports = function () { console.log('module b--hello'); }
use: var CommonUtils = require('han-utils');
var Module = CommonUtils.loadDir(__dirname+'/test'); var ModuleHello = CommonUtils.loadDir(__dirname+'/test/hello');
Module.a(); // print module a Module.b(); // print module b ModuleHello.b(); //print module b--hello
loadRoutes: 注册路由
loadHtml : 抓取html内容