A webpack-like loader library for Node
DISCLAIMER Loaders are still experimental in Node and may still change, which means this module is still experimental as well. Use at own risk and DO NOT rely on it in production.
This module is a simple wrapper around create-esm-loader to make it easier to set up a loader. In create-esm-loader you have to manually initialize, configure and export your loader, but this module reduces that so that all you need to do is configure the loader.
npm install --save-dev node-esm-loader
node-esm-loader
will automatically export a loader based on how you configured it.
You can use it by running Node as
node --import=node-esm-loader/register ./your/file.js
Or you can use the JavaScript api
// # register.js
import { register } from 'node:module';
register('node-esm-loader', import.meta.url, {
// Optional, will search for a configuration file automatically if not specified
data: {
loaderConfig: './path/to/config.js',
},
});
and then run Node as
node --import=./register.js ./your/file.js
For more info about this, see https://nodejs.org/api/module.html#customization-hooks. Note: since version 0.3.0, either Node >=18.19 or >=20.6 is required. Support for lower Node version has been dropped.
node-esm-loader
loader will subsequently look for a configuration file in various places using cosmiconfig, where it also looks up the directory tree.
My advice is to either use .loaderrc.js
, or use a .config
folder with .config/loaderrc.js
, but loader.config.js
will also work.
// .loaderrc.js, loader.config.js or .config/loaderrc.js
export default {
loaders: [
'vue-esm-loader',
{
test: /\.(png|gif|jpe?g)$/,
type: 'asset/resource',
},
{
transform(source, opts) {
return { source: someTransformation(String(source)) };
}
},
],
};
For more info on what the loaders configuration should look like, have a look at create-esm-loader.
If you want to put the loader config in a different file, you can use
node --import=node-esm-loader/register ./your-file.js --loader-config=./path/to/config.js
When using this with mocha, create a .mocharc.cjs
file that looks like this:
module.exports = {
import: 'node-esm-loader/register',
};
You can find a list of compatible loaders, here: