armansansd 3424b1927b first commit il y a 3 ans
..
lib 3424b1927b first commit il y a 3 ans
test 3424b1927b first commit il y a 3 ans
.travis.yml 3424b1927b first commit il y a 3 ans
CHANGELOG.md 3424b1927b first commit il y a 3 ans
LICENSE.md 3424b1927b first commit il y a 3 ans
README.md 3424b1927b first commit il y a 3 ans
build.js 3424b1927b first commit il y a 3 ans
index.js 3424b1927b first commit il y a 3 ans
package.json 3424b1927b first commit il y a 3 ans
walk.js 3424b1927b first commit il y a 3 ans

README.md

acorn-node

Acorn preloaded with plugins for syntax parity with recent Node versions.

It also includes versions of the plugins compiled with Bublé, so they can be run on old Node versions (0.6 and up).

npm travis standard

Install

npm install acorn-node

Usage

var acorn = require('acorn-node')

The API is the same as acorn, but the following syntax features are enabled by default:

And the following options have different defaults from acorn, to match Node modules:

  • ecmaVersion: 2019
  • allowHashBang: true
  • allowReturnOutsideFunction: true

    var walk = require('acorn-node/walk')
    

The Acorn syntax tree walker. Comes preconfigured for the syntax plugins if necessary. See the acorn documentation for details.

License

Apache-2.0