A Facebook-specific fork of the Esprima JavaScript parser, version 15001.1001.0-dev-harmony-fb, that adds full support for JSX syntax extensions on top of ECMAScript 5.1 and experimental ES6/Harmony features. Unlike standard Esprima, this fork enables parsing JSX as used by React and JSXDOM. It maintains compatibility with Mozilla Parser AST format and includes syntax location tracking. Its versioning scheme maps to upstream Esprima harmony branches with Facebook modifications. No longer actively maintained; replaced by modern parsers like Babel.
npm install esprima-fbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Parses JSX code into an AST using esprima-fb with location tracking.
Migrate to @babel/parser or acorn with acorn-jsx plugin.
Always pass { jsx: true } to parse() when parsing JSX code.Use a modern parser that follows the latest ESTree specification.
Add { jsx: true } as second argument to parse().Install the package: npm install esprima-fb --save
No dependency data recorded yet.