Espree
Espree is an actively-maintained fork Esprima, a high performance,
standard-compliant ECMAScript
parser written in ECMAScript (also popularly known as
JavaScript).
Features
- Full support for ECMAScript 5.1 (ECMA-262)
- Sensible syntax tree format compatible with Mozilla
Parser AST
- Optional tracking of syntax node location (index-based and line-column)
- Heavily tested (> 650 unit tests) with full code coverage
Usage
Install:
npm i espree --save
And in your Node.js code:
var espree = require("espree");
var ast = espree.parse(code);
There is a second argument to parse()
that allows you to specify various options:
var espree = require("espree");
var ast = espree.parse(code, {
range: true,
loc: true,
comments: true,
attachComment: true,
tokens: true,
tolerant: true,
ecmaFeatures: {
arrowFunctions: true,
blockBindings: true,
destructuring: true,
regexYFlag: true,
regexUFlag: true,
templateStrings: true,
binaryLiterals: true,
octalLiterals: true,
unicodeCodePointEscapes: true,
defaultParams: true,
restParams: true,
forOf: true,
objectLiteralComputedProperties: true,
objectLiteralShorthandMethods: true,
objectLiteralShorthandProperties: true,
objectLiteralDuplicateProperties: true,
generators: true,
spread: true,
classes: true,
modules: true,
jsx: true,
globalReturn: true
}
});
Plans
Espree starts as a fork of Esprima v1.2.2, the last stable published released of Esprima before work on ECMAScript 6 began. Espree's first version is therefore v1.2.2 and is 100% compatible with Esprima v1.2.2 as a drop-in replacement. The version number will be incremented based on semantic versioning as features and bug fixes are added.
The immediate plans are:
- Move away from giant files and move towards small, modular files that are easier to manage.
- Move towards CommonJS for all files and use browserify to create browser bundles.
- Support ECMAScript version filtering, allowing users to specify which version the parser should work in (similar to Acorn's
ecmaVersion
property). - Add tests to track comment attachment.
- Add well-thought-out features that are useful for tools developers.
- Add full support for ECMAScript 6.
- Add optional parsing of JSX.
Esprima Compatibility Going Forward
The primary goal is to produce the exact same AST structure as Esprima and Acorn, and that takes precedence over anything else. (The AST structure being the SpiderMonkey Parser API with JSX extensions.) Separate from that, Espree may deviate from what Esprima outputs in terms of where and how comments are attached, as well as what additional information is available on AST nodes. That is to say, Espree may add more things to the AST nodes than Esprima does but the overall AST structure produced will be the same.
Espree may also deviate from Esprima in the interface it exposes.
Frequent and Incremental Releases
Espree will not do giant releases. Releases will happen periodically as changes are made and incremental releases will be made towards larger goals. For instance, we will not have one big release for ECMAScript 6 support. Instead, we will implement ECMAScript 6, piece-by-piece, hiding those pieces behind an ecmaFeatures
property that allows you to opt-in to use those features.
Contributing
Issues and pull requests will be triaged and responded to as quickly as possible. We operate under the ESLint Contributor Guidelines, so please be sure to read them before contributing. If you're not sure where to dig in, check out the issues.
Espree is licensed under a permissive BSD 3-clause license.
Build Commands
npm test
- run all linting and testsnpm run lint
- run all lintingnpm run browserify
- creates a version of Espree that is usable in a browser
Known Incompatibilities
In an effort to help those wanting to transition from other parsers to Espree, the following is a list of noteworthy incompatibilities with other parsers. These are known differences that we do not intend to change.
Esprima 1.2.2
Esprima/Harmony Branch
- Esprima/Harmony uses a different comment attachment algorithm that results in some comments being added in different places than Espree. The algorithm Espree uses is the same one used in Esprima 1.2.2.
- Template tokens have a
head
property in addition to tail
. Esprima has only tail
.
Esprima-FB
- All Esprima/Harmony incompatibilities.
Frequently Asked Questions
Why are you forking Esprima?
ESLint has been relying on Esprima as its parser from the beginning. While that was fine when the JavaScript language was evolving slowly, the pace of development has increased dramatically and Esprima has fallen behind. ESLint, like many other tools reliant on Esprima, has been stuck in using new JavaScript language features until Esprima updates, and that has caused our users frustration.
We decided the only way for us to move forward was to create our own parser, bringing us inline with JSHint and JSLint, and allowing us to keep implementing new features as we need them. We chose to fork Esprima instead of starting from scratch in order to move as quickly as possible with a compatible API.
Have you tried working with Esprima?
Yes. Since the start of ESLint, we've regularly filed bugs and feature requests with Esprima. Unfortunately, we've been unable to make much progress towards getting our needs addressed.
Why don't you just use Facebook's Esprima fork?
esprima-fb
is Facebook's Esprima fork that features JSX and Flow type annotations. We tried working with esprima-fb
in our evaluation of how to support ECMAScript 6 and JSX in ESLint. Unfortunately, we were hampered by bugs that were part of Esprima (not necessarily Facebook's code). Since esprima-fb
tracks the Esprima Harmony branch, that means we still were unable to get fixes or features we needed in a timely manner.
Why don't you just use Acorn?
Acorn is a great JavaScript parser that produces an AST that is compatible with Esprima. Unfortunately, ESLint relies on more than just the AST to do its job. It relies on Esprima's tokens and comment attachment features to get a complete picture of the source code. We investigated switching to Acorn, but the inconsistencies between Esprima and Acorn created too much work for a project like ESLint.
We expect there are other tools like ESLint that rely on more than just the AST produced by Esprima, and so a drop-in replacement will help those projects as well as ESLint.
What ECMAScript 6 features do you support?
Please see the tracking issue for the most up-to-date information.
Why use Espree instead of Esprima?
- Faster turnaround time on bug fixes
- More frequent releases
- Better communication and responsiveness to issues
- Ongoing development
Why use Espree instead of Esprima-FB?
- Opt-in to just the ECMAScript 6 features you want
- JSX support is off by default, so you're not forced to use it to use ECMAScript 6
- Stricter ECMAScript 6 support