What is module-alias?
The module-alias package is used to create aliases of directory paths, allowing you to simplify the require/import statements in your Node.js projects. This can be particularly useful for projects with deep directory structures, making the code cleaner and easier to maintain.
What are module-alias's main functionalities?
Registering Aliases
This feature allows you to register aliases for directories so that you can require modules using the alias instead of relative paths.
require('module-alias/register');
moduleAlias.addAliases({
'@root' : __dirname,
'@models' : __dirname + '/models',
'@controllers': __dirname + '/controllers',
'@lib' : __dirname + '/lib'
});
Customizing Aliases with package.json
You can also define aliases directly in your package.json file, which module-alias will read and use to resolve modules.
{
"_moduleAliases": {
"@root": ".",
"@models": "./models",
"@controllers": "./controllers",
"@lib": "./lib"
}
}
Requiring Modules with Aliases
Once aliases are set up, you can require modules using the defined aliases, making the require statements much cleaner and easier to understand.
const User = require('@models/user');
Other packages similar to module-alias
require-alias
This package allows you to alias module paths in Node.js, similar to module-alias. It provides a way to keep your require calls clean. However, it is not as widely used or as well-maintained as module-alias.
babel-plugin-module-resolver
This Babel plugin allows you to add new 'root' directories that contain your modules. It also lets you map a module to another module or filepath. It is more flexible than module-alias as it integrates with Babel and supports both Node.js and frontend JavaScript projects.
link-module-alias
This package provides similar functionality to module-alias, allowing you to define aliases for your modules and directories. It differs in the way it sets up the aliases, using symbolic links, which can be more compatible with certain tools that do not understand module resolution.
module-alias

If everyone who reads this would donate just $1, I would be a millionaire in 1 week! 🙃 Thank you for reaching 1M+ weekly downloads!
More donations means more motivation for me to make updates. Thank you so much!
DONATE $1 ❤️
Create aliases of directories and register custom module paths in NodeJS like a boss!
No more shit-coding paths in Node like so:
require('../../../../some/very/deep/module')
Enough of this madness!
Just create an alias and do it the right way:
var module = require('@deep/module')
import module from '@deep/module'
It also allows you to register directories that will act just like node_modules
but with your own private modules, so that you can access them directly:
require('my_private_module');
import module from 'my_private_module'
WARNING: If you are going to use this package within another NPM package, please read Using within another NPM package first to be aware of potential caveats.
Install
npm i --save module-alias
Usage
Add your custom configuration to your package.json
(in your application's root)
"_moduleAliases": {
"@root" : ".",
"@deep" : "src/some/very/deep/directory/or/file",
"@my_module" : "lib/some-file.js",
"something" : "src/foo",
}
"_moduleDirectories": ["node_modules_custom"],
Then add this line at the very main file of your app, before any code
require('module-alias/register')
And you're all set! Now you can do stuff like:
require('something')
const module = require('@root/some-module')
const veryDeepModule = require('@deep/my-module')
const customModule = require('my_private_module')
import 'something'
import module from '@root/some-module'
import veryDeepModule from '@deep/my-module'
import customModule from 'my_private_module'
Advanced usage
If you don't want to modify your package.json
or you just prefer to set it all up programmatically, then the following methods are available for you:
addAlias('alias', 'target_path')
- register a single alias
addAliases({ 'alias': 'target_path', ... })
- register multiple aliases
addPath(path)
- Register custom modules directory (like node_modules, but with your own modules)
Examples:
const moduleAlias = require('module-alias')
moduleAlias.addAlias('@client', __dirname + '/src/client')
moduleAlias.addAliases({
'@root' : __dirname,
'@client': __dirname + '/src/client',
...
})
moduleAlias.addAlias('@src', (fromPath, request, alias) => {
if (fromPath.startsWith(__dirname + '/others')) return __dirname + '/others'
return __dirname + '/src'
})
moduleAlias.addPath(__dirname + '/node_modules_custom')
moduleAlias.addPath(__dirname + '/src')
moduleAlias(__dirname + '/package.json')
moduleAlias()
Usage with WebPack
Luckily, WebPack has a built in support for aliases and custom modules directories so it's easy to make it work on the client side as well!
const npm_package = require('./package.json')
module.exports = {
entry: { ... },
resolve: {
root: __dirname,
alias: npm_package._moduleAliases || {},
modules: npm_package._moduleDirectories || []
}
}
More details on the official documentation.
Usage with Jest
Unfortunately, module-alias
itself would not work from Jest due to a custom behavior of Jest's require
. But you can use it's own aliasing mechanism instead. The configuration can be defined either in package.json
or jest.config.js
. The example below is for package.json
:
"jest": {
"moduleNameMapper": {
"@root/(.*)": "<rootDir>/$1",
"@client/(.*)": "<rootDir>/src/client/$1"
},
}
More details on the official documentation.
Using within another NPM package
You can use module-alias
within another NPM package, however there are a few things to take into consideration.
- As the aliases are global, you should make sure your aliases are unique, to avoid conflicts with end-user code, or with other libraries using module-alias. For example, you could prefix your aliases with '@my-lib/', and then use require('@my-lib/deep').
- The internal "register" mechanism may not work, you should not rely on
require('module-alias/register')
for automatic detection of package.json
location (where you defined your aliases), as it tries to find package.json in either the current working directory of your node process, or two levels down from node_modules/module-alias. It is extremely likely that this is end-user code. So, instead, your should either register aliases manually with moduleAlias.addAlias
, or using something like require('module-alias')(__dirname)
.
Here is an example project.
Known incompatibilities
This module does not play well with:
- Front-end JavaScript code. Module-alias is designed for server side so do not expect it to work with front-end frameworks (React, Vue, ...) as they tend to use Webpack. Use Webpack's resolve.alias mechanism instead.
- Jest, which discards node's module system entirely to use it's own module system, bypassing module-alias.
- The NCC compiler, as it uses WebPack under the hood without exposing properties, such as resolve.alias. It is not something they wish to do.
How it works?
In order to register an alias it modifies the internal Module._resolveFilename
method so that when you use require
or import
it first checks whether the given string starts with one of the registered aliases, if so, it replaces the alias in the string with the target path of the alias.
In order to register a custom modules path (addPath
) it modifies the internal Module._nodeModulePaths
method so that the given directory then acts like it's the node_modules
directory.
Refactor your code (for already existing projects)
If you are using this on an existing project, you can use relative-to-alias to refactor your code to start using aliases.
Donate
If everyone who downloads module-alias would donate just $1, I would be a millionaire in 1 week!
I love contributing to open source, for free, but you know, sometimes, in the middle of the night, I may wan to eat.
There are some improvements planned for module-alias and your donations will help a lot to make it happen faster.
DONATE $1 ❤️ and thank you so much!