我如何要求在node.js文件夹中的所有文件?
需要像这样的东西:
files.forEach(function (v,k){
// require routes
require('./routes/'+v);
}};
我如何要求在node.js文件夹中的所有文件?
需要像这样的东西:
files.forEach(function (v,k){
// require routes
require('./routes/'+v);
}};
当前回答
对于这个确切的用例,我一直在使用的一个模块是require-all。
它递归地要求给定目录及其子目录中的所有文件,只要它们不匹配excludeDirs属性。
它还允许指定文件过滤器以及如何从文件名派生返回散列的键。
其他回答
我建议使用glob来完成这个任务。
var glob = require( 'glob' )
, path = require( 'path' );
glob.sync( './routes/**/*.js' ).forEach( function( file ) {
require( path.resolve( file ) );
});
在这个glob解决方案上展开。如果你想将所有模块从一个目录导入到index.js中,然后将该index.js导入到应用程序的另一部分,那么就这样做。注意,stackoverflow使用的高亮显示引擎不支持模板文字,因此这里的代码可能看起来很奇怪。
const glob = require("glob");
let allOfThem = {};
glob.sync(`${__dirname}/*.js`).forEach((file) => {
/* see note about this in example below */
allOfThem = { ...allOfThem, ...require(file) };
});
module.exports = allOfThem;
完整的示例
目录结构
globExample/example.js
globExample/foobars/index.js
globExample/foobars/unexpected.js
globExample/foobars/barit.js
globExample/foobars/fooit.js
globExample - js操作。
const { foo, bar, keepit } = require('./foobars/index');
const longStyle = require('./foobars/index');
console.log(foo()); // foo ran
console.log(bar()); // bar ran
console.log(keepit()); // keepit ran unexpected
console.log(longStyle.foo()); // foo ran
console.log(longStyle.bar()); // bar ran
console.log(longStyle.keepit()); // keepit ran unexpected
globExample foobars / index . js
const glob = require("glob");
/*
Note the following style also works with multiple exports per file (barit.js example)
but will overwrite if you have 2 exports with the same
name (unexpected.js and barit.js have a keepit function) in the files being imported. As a result, this method is best used when
your exporting one module per file and use the filename to easily identify what is in it.
Also Note: This ignores itself (index.js) by default to prevent infinite loop.
*/
let allOfThem = {};
glob.sync(`${__dirname}/*.js`).forEach((file) => {
allOfThem = { ...allOfThem, ...require(file) };
});
module.exports = allOfThem;
globExample foobars /无法js。
exports.keepit = () => 'keepit ran unexpected';
globExample foobars / barit js。
exports.bar = () => 'bar run';
exports.keepit = () => 'keepit ran';
globExample foobars / fooit js。
exports.foo = () => 'foo ran';
在安装了glob的项目中,运行node example.js
$ node example.js
foo ran
bar run
keepit ran unexpected
foo ran
bar run
keepit ran unexpected
如果你在example ("app/lib/*.js")目录中包含了*.js的所有文件:
在app/lib目录下
example.js:
module.exports = function (example) { }
示例- 2. - js:
module.exports = function (example2) { }
在目录app中创建index.js
index.js:
module.exports = require('./app/lib');
当require得到一个文件夹的路径时,它会在该文件夹中查找index.js文件;如果有一个,它就使用它,如果没有,它就失败。
这可能是最有意义的(如果你可以控制文件夹)创建一个index.js文件,然后分配所有的“模块”,然后简单地要求。
yourfile.js
var routes = require("./routes");
index.js
exports.something = require("./routes/something.js");
exports.others = require("./routes/others.js");
如果你不知道文件名,你应该写一些加载器。
加载器的工作示例:
var normalizedPath = require("path").join(__dirname, "routes");
require("fs").readdirSync(normalizedPath).forEach(function(file) {
require("./routes/" + file);
});
// Continue application logic here
要求所有文件从路由文件夹和应用作为中间件。不需要外部模块。
// require
const { readdirSync } = require("fs");
// apply as middleware
readdirSync("./routes").map((r) => app.use("/api", require("./routes/" + r)));