Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
esprima-loader
Advanced tools
esprima-loader is a foundational utility loader for webpack. It is a simple glue and pipeline layer between webpack and any arbitrary AST transformations you want to apply.
It takes in the source and literally just pipes the AST through each transformer, reusing the AST structure to avoid the overhead of reducing to a string between each transformation.
var resultingAST = transforms.reduce(function(ast, transform) {
return estraverse[transform.type || 'replace'](ast, transform);
}, esprima.parse(source));
esprima-loader automates the busy parts of parsing and traversing the AST. As
the author of an esprima-loader transformer, you simply need to look at and
understand the estraverse
API.
// webpack.config.js
module.exports = {
esprima: {
transforms: [
{
type: 'replace', // or traverse
enter: function(node, parent) {},
leave: function(node, parent) {}
}
]
}
};
This uses the -fb
forks of each esprima project for JSX support. Namely,
esprima-fb
and estraverse-fb
. Regardless, due to escodegen
creating the
resulting JavaScript string it is required that this be the final step in your
pipeline.
The react-autodoc
project comes packages with a transformer to automate the
propType annotations required to resolve the runtime propType declarations.
View that project at skookum/react-autodoc.
Copyright 2015 Skookum Digital Works, Inc. All Right Reserved MIT...
FAQs
Arbitrary AST transforms for your webpack loader pipeline.
The npm package esprima-loader receives a total of 14 weekly downloads. As such, esprima-loader popularity was classified as not popular.
We found that esprima-loader 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.