Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
babel-traverse
Advanced tools
The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes
The babel-traverse package is part of the Babel compiler ecosystem and provides the ability to traverse and manipulate the abstract syntax tree (AST) generated from JavaScript code. It allows developers to analyze and rewrite code programmatically, which is useful for building compilers, code transformation tools, linters, and more.
Visiting Nodes
This feature allows you to visit and manipulate nodes in the AST. In the provided code, we change all identifiers named 'n' to 'x' in a simple function.
const babel = require('@babel/core');
const traverse = require('babel-traverse').default;
const code = `function square(n) { return n * n; }`;
const ast = babel.parse(code);
traverse(ast, {
enter(path) {
if (path.isIdentifier({ name: 'n' })) {
path.node.name = 'x';
}
}
});
console.log(babel.generate(ast).code);
Scope Manipulation
This feature involves manipulating the scope of variables. In the example, within a function declaration, the variable 'b' is renamed to 'c'.
const babel = require('@babel/core');
const traverse = require('babel-traverse').default;
const code = `let a = 2; function test() { let b = 4; }`;
const ast = babel.parse(code);
traverse(ast, {
FunctionDeclaration(path) {
path.scope.rename('b', 'c');
}
});
console.log(babel.generate(ast).code);
Recast is a JavaScript AST manipulation library that allows you to parse, modify, and print your code while preserving the original formatting as much as possible. It differs from babel-traverse in that it focuses more on preserving the code's original format and less on providing a comprehensive transformation toolkit.
Esprima is a high performance, standard-compliant ECMAScript parser that also allows you to traverse and analyze JavaScript code. Unlike babel-traverse, Esprima does not focus on transformations but rather on parsing and providing a detailed AST.
FAQs
The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes
The npm package babel-traverse receives a total of 2,958,296 weekly downloads. As such, babel-traverse popularity was classified as popular.
We found that babel-traverse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.