Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
The esrecurse npm package is designed for recursively walking through ECMAScript/JavaScript syntax trees. It is commonly used for static analysis, code transformation, and other tasks that involve traversing and manipulating the structure of JavaScript code.
Visiting nodes in an AST
This feature allows you to visit each node in an abstract syntax tree (AST) and perform actions based on the node type. In the code sample, `Literal` nodes are logged to the console.
const esrecurse = require('esrecurse');
esrecurse.visit(ast, {
Literal(node) {
console.log(node.value);
}
});
Custom visitor keys
This feature allows you to define custom visitor keys for node types that are not part of the standard ECMAScript syntax. In the code sample, a `CustomNode` type is visited, and its `customProperty` is logged.
const esrecurse = require('esrecurse');
const visitorKeys = {
CustomNode: ['customProperty']
};
esrecurse.visit(ast, {
CustomNode(node) {
console.log(node.customProperty);
}
}, visitorKeys);
Estraverse is a similar package that provides a simple interface for traversing and optionally replacing nodes in an AST. It is similar to esrecurse but has a more extensive API and additional features like the ability to replace nodes.
Acorn-walk is a part of the Acorn JS parser ecosystem and provides functionality for walking the AST generated by Acorn. It is similar to esrecurse but is tailored specifically for ASTs generated by Acorn and may not be as generic.
FAQs
ECMAScript AST recursive visitor
The npm package esrecurse receives a total of 13,461,966 weekly downloads. As such, esrecurse popularity was classified as popular.
We found that esrecurse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.