我如何要求在node.js文件夹中的所有文件?

需要像这样的东西:

files.forEach(function (v,k){
  // require routes
  require('./routes/'+v);
}};

当前回答

可以使用:https://www.npmjs.com/package/require-file-directory

要求所选文件只有名称或全部文件。 不需要绝对路径。 易于理解和使用。

其他回答

要求所有文件从路由文件夹和应用作为中间件。不需要外部模块。

// require
const { readdirSync } = require("fs");

// apply as middleware
readdirSync("./routes").map((r) => app.use("/api", require("./routes/" + r)));

我使用节点模块复制到模块来创建一个文件,以需要我们基于nodejs的系统中的所有文件。

我们的实用程序文件的代码是这样的:

/**
 * Module dependencies.
 */

var copy = require('copy-to');
copy(require('./module1'))
.and(require('./module2'))
.and(require('./module3'))
.to(module.exports);

在所有的文件中,大多数函数都被写成export,如下所示:

exports.function1 = function () { // function contents };
exports.function2 = function () { // function contents };
exports.function3 = function () { // function contents };

所以,然后使用文件中的任何函数,你只需要调用:

var utility = require('./utility');

var response = utility.function2(); // or whatever the name of the function is

如果你在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

我建议使用glob来完成这个任务。

var glob = require( 'glob' )
  , path = require( 'path' );

glob.sync( './routes/**/*.js' ).forEach( function( file ) {
  require( path.resolve( file ) );
});