You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

977 B

Installation

Node.js

To use the pegjs command, install PEG.js globally:

$ npm install -g pegjs

To use the JavaScript API, install PEG.js locally:

$ npm install pegjs

If you need both the pegjs command and the JavaScript API, install PEG.js both ways.

If you plan to use the pegjs command only in your package.json, it is suggested you install it locally only, as all locally installed packages that contain command line tools are available to it.

Browser

Download the PEG.js library (regular or minified version) or use it directly using UNPKG:

<script src="https://unpkg.com/pegjs/dist/peg.min.js"></script>

Latest

To use the latest features, fixes and changes of PEG.js, install the packaged dev release:

$ npm install pegjs@dev

On the browser you can use UNPKG again:

<script src="https://unpkg.com/pegjs@dev/dist/peg.min.js"></script>