![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
commonjs-walker
Advanced tools
Analyzes and walks down the dependencies from a commonjs entry and creates a walking tree.
var walker = require('commonjs-walker');
NOTICE that it will not walk down node_modules
and any foreign packages.
require()
a directory..js
, .json
, and then .node
, according to File Moduleswalker(options)
.walk('/path/to/entry.js')
// walk down another entry
.walk('/path/to/entry2.js')
// walk down many entries
.walk(['/path/to/entry3.js', '/path/to/entry4.js'])
.done(function(err, nodes){
// ...
});
Returns an EventEmitter.
Walks down from a entry point, such as package.main
of commonjs or any JavaScript file based on CommonJS, and tries to create a walker.Module
instance of the top level.
Path
the absolute path of the entry point.Object
the hashmap of <path>: <walker.Module>
If the file structure of your project is (actually it is a very extreme scenario):
/path/to
|-- index.js
|-- a.png
|-- a
|-- index.json
index.js:
require('./a');
require('b');
var image = require.resolve('./a.png')
a/index.json
{}
Code:
walker().walk('/path/to/index.js').done(function(err, nodes){
console.log(nodes);
});
Then, the nodes
object will be something like:
{
'/path/to/index.js': {
require: {
'./a': '/path/to/a/index.json',
'b': 'b'
},
resolve: {
'./a.png': '/path/to/a.png'
},
content: <buffer>
},
'/path/to/a.png': {
require: {}
}
'/path/to/a/index.json': {
require: {},
content: <buffer>
},
'b': {
foreign: true
}
}
All options are optional. By default, walker
works in a very strict mode.
Option | Type | Default | Description |
---|---|---|---|
allow_cyclic | Boolean | true | whether should check cyclic dependencies |
check_require_length | Boolean | false | whether should check the arguments.length of method require() |
allow_non_literal_require | Boolean | true | whether should check the usage of method require() . If false, the argument of require() must be an literal string. |
comment_require | Boolean | true | whether should parse @require() , @require.resolve and @require.async in comments. |
require_resolve | Boolean | true | whether should analysis the usage of require.resolve() . |
require_async | Boolean | true | whether should record the usage of require.async() . |
allow_absolute_path | Boolean | true | whether should allow to require an absolute path. |
extensions | Array | ['.js', '.json', '.node'] | see options.extensions section |
type Array
When we require()
a path
, if path
is not found, nodejs will attempt to load the required filename with the added extension of .js
, .json
, and then .node
. Reference via
But for browser-side environment, most usually, we do not support extension .node
which is what options.extensions
is for.
Especially, only tree values below are allowed:
['.js']
['.js', '.json']
,['.js', '.json', '.node']
{
allow_cyclic: false,
strict_require: true,
allow_absolute_path: false,
extensions: ['.js', '.json']
}
Register compilers to precompile a file
RegExp|String
to match the given pathfunction(content, options, callback)
function(err, result)
Error=null
String
the compiled content.Boolean=false
to indicate that if the compiled content is an javascript file.Boolean=false
to indicate that if the compiled content is a json file.warn
String
Emits if there is a warning. Warnings are potential problems that might break your code, including:
Actually, there is no walker.Module
exists. We only use it to declare and describe the structure of the module.
Property | Type | Description |
---|---|---|
foreign | Boolean | whether the current module is from a foreign package. |
require | Object | The <id>: <path> map. id is the module identifier user require() d in the module file. |
resolve | Object | |
async | Object |
String
the enum type of the errorString
error messagesString
the origin error.stackObject
the object of the major information of the error, this is useful for i18n.FAQs
Analyzer and tree walker for commonjs.
We found that commonjs-walker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.