Version 1
[yaffs-website] / node_modules / grunt / node_modules / esprima / README.md
1 [![NPM version](https://img.shields.io/npm/v/esprima.svg)](https://www.npmjs.com/package/esprima)
2 [![npm download](https://img.shields.io/npm/dm/esprima.svg)](https://www.npmjs.com/package/esprima)
3 [![Build Status](https://img.shields.io/travis/jquery/esprima/master.svg)](https://travis-ci.org/jquery/esprima)
4 [![Coverage Status](https://img.shields.io/codecov/c/github/jquery/esprima/master.svg)](https://codecov.io/github/jquery/esprima)
5
6 **Esprima** ([esprima.org](http://esprima.org), BSD license) is a high performance,
7 standard-compliant [ECMAScript](http://www.ecma-international.org/publications/standards/Ecma-262.htm)
8 parser written in ECMAScript (also popularly known as
9 [JavaScript](https://en.wikipedia.org/wiki/JavaScript)).
10 Esprima is created and maintained by [Ariya Hidayat](https://twitter.com/ariyahidayat),
11 with the help of [many contributors](https://github.com/jquery/esprima/contributors).
12
13 ### Features
14
15 - Full support for ECMAScript 6 ([ECMA-262](http://www.ecma-international.org/publications/standards/Ecma-262.htm))
16 - Sensible [syntax tree format](https://github.com/estree/estree/blob/master/spec.md) as standardized by [ESTree project](https://github.com/estree/estree)
17 - Optional tracking of syntax node location (index-based and line-column)
18 - [Heavily tested](http://esprima.org/test/ci.html) (~1250 [unit tests](https://github.com/jquery/esprima/tree/master/test/fixtures) with [full code coverage](https://codecov.io/github/jquery/esprima))
19
20 Esprima serves as a **building block** for some JavaScript
21 language tools, from [code instrumentation](http://esprima.org/demo/functiontrace.html)
22 to [editor autocompletion](http://esprima.org/demo/autocomplete.html).
23
24 Esprima runs on many popular web browsers, as well as other ECMAScript platforms such as
25 [Rhino](http://www.mozilla.org/rhino), [Nashorn](http://openjdk.java.net/projects/nashorn/), and [Node.js](https://npmjs.org/package/esprima).
26
27 For more information, check the web site [esprima.org](http://esprima.org).