@splintorにすべてのメリット(ありがとう)。
しかし、これは私自身の派生バージョンです。
利点:
- エクスポートされるモジュールは
{module_name: exports_obj}
オブジェクトの下に収集されます。
- module_nameは、そのファイル名から作成されます。
- ...拡張子なしで、スラッシュをアンダースコアに置き換えます(サブディレクトリスキャンの場合)。
- カスタマイズを容易にするためにコメントを追加しました。
- つまり、ルートレベルのモジュールに手動で必要なファイルがある場合などは、サブディレクトリにファイルを含めないようにすることができます。
編集:私のように、モジュールが通常のjavascriptオブジェクト(少なくともルートレベル)以外のものを返さないと確信している場合は、元のディレクトリ構造を複製して「マウント」することもできます(コード(ディープバージョン)最後のセクション)。
コード(オリジナルバージョン):
function requireAll(r) {
return Object.fromEntries(
r.keys().map(function(mpath, ...args) {
const result = r(mpath, ...args);
const name = mpath
.replace(/(?:^[.\/]*\/|\.[^.]+$)/g, '') // Trim
.replace(/\//g, '_') // Relace '/'s by '_'s
;
return [name, result];
})
);
};
const allModules = requireAll(require.context(
// Any kind of variables cannot be used here
'@models' // (Webpack based) path
, true // Use subdirectories
, /\.js$/ // File name pattern
));
例:
最終的なサンプル出力console.log(allModules);
:
{
main: { title: 'Webpack Express Playground' },
views_home: {
greeting: 'Welcome to Something!!',
title: 'Webpack Express Playground'
}
}
ディレクトリツリー:
models
├── main.js
└── views
└── home.js
コード(ディープバージョン):
function jsonSet(target, path, value) {
let current = target;
path = [...path]; // Detach
const item = path.pop();
path.forEach(function(key) {
(current[key] || (current[key] = {}));
current = current[key];
});
current[item] = value;
return target;
};
function requireAll(r) {
const gather = {};
r.keys().forEach(function(mpath, ...args) {
const result = r(mpath, ...args);
const path = mpath
.replace(/(?:^[.\/]*\/|\.[^.]+$)/g, '') // Trim
.split('/')
;
jsonSet(gather, path, result);
});
return gather;
};
const models = requireAll(require.context(
// Any kind of variables cannot be used here
'@models' // (Webpack based) path
, true // Use subdirectories
, /\.js$/ // File name pattern
));
例:
このバージョンを使用した前の例の結果:
{
main: { title: 'Webpack Express Playground' },
views: {
home: {
greeting: 'Welcome to Something!!',
title: 'Webpack Express Playground'
}
}
}
image-size-loader
正しいアスペクト比のプレースホルダーを作成するために、すべての画像にを使用したいと考えています。