
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@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 toolchain and is used for traversing and manipulating the abstract syntax tree (AST) generated by Babel. It provides methods to visit nodes in the tree, update them, add or remove nodes, and perform various transformations on the code represented by the AST.
Visiting Nodes
This feature allows you to visit specific nodes in the AST. You can specify the types of nodes you're interested in and provide functions that will be called when those nodes are encountered during traversal.
{"type": "Identifier", "name": "a"}
Modifying Nodes
With @babel/traverse, you can modify nodes in the AST. This can include changing node types, adding or removing properties, or even replacing a node with a different one.
{"type": "Identifier", "name": "b"}
Adding and Removing Nodes
This feature allows you to add new nodes to the AST or remove existing ones. This is useful for code transformations where you need to introduce new variables, functions, or other constructs, or clean up unused code.
{"type": "VariableDeclaration", "declarations": [{"type": "VariableDeclarator", "id": {"type": "Identifier", "name": "c"}, "init": {"type": "Literal", "value": 3, "raw": "3"}}], "kind": "const"}
Scope Management
The package provides utilities for managing scope within the AST. This includes tracking variable declarations, bindings, and references, which is crucial for correctly transforming code without introducing errors.
{"type": "BlockStatement", "body": [], "directives": []}
Estraverse is a simple and flexible library for traversing and manipulating JavaScript ASTs. It is similar to @babel/traverse but is not tied to the Babel ecosystem and can be used with other ASTs conforming to the ESTree spec.
Acorn-walk is a small module for walking the AST generated by the Acorn parser. It provides a simple interface for visiting nodes but does not offer the same level of manipulation capabilities as @babel/traverse.
Recast provides AST traversal and manipulation capabilities, with a focus on preserving the original formatting of the code as much as possible. It uses esprima or babel as the parser and is more focused on code printing than @babel/traverse.
The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes
See our website @babel/traverse for more information or the issues associated with this package.
Using npm:
npm install --save-dev @babel/traverse
or using yarn:
yarn add @babel/traverse --dev
v7.27.0 (2025-03-24)
babel-helper-create-class-features-plugin
, babel-traverse
, babel-types
traverseFast
to exit early (@liuxingbaoyu)babel-parser
, babel-types
babel-generator
babel-parser
, babel-template
allowYieldOutsideFunction
to parser (@liuxingbaoyu)babel-plugin-transform-typescript
, babel-traverse
upToScope
parameter to hasBinding
(@liuxingbaoyu)babel-parser
babel-types
babel-helper-create-class-features-plugin
, babel-plugin-transform-class-properties
babel-traverse
scope.crawl()
(@liuxingbaoyu)babel-helpers
, babel-preset-typescript
, babel-runtime-corejs2
, babel-runtime-corejs3
, babel-runtime
babel-cli
@babel/cli
generates duplicate inline source maps (@liuxingbaoyu)babel-plugin-transform-named-capturing-groups-regex
, babel-types
babel-types
@babel/types
(@liuxingbaoyu)babel-helper-create-regexp-features-plugin
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 64,521,604 weekly downloads. As such, @babel/traverse popularity was classified as popular.
We found that @babel/traverse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.