Clone and edit this document
Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
Simplest example of Esprima parser
node v8.17.0
version:
2.0.0
endpoint
share
tweet
Load Esprima and use it to parse a input:
var esprima = require('esprima'); var input = 'answer = 42'; var tree = esprima.parseScript(input); console.log(tree);
Loading…
no comments
sign in
to comment