Skip to content
Snippets Groups Projects
Commit 49bfe28f authored by Lorenz Glißmann's avatar Lorenz Glißmann
Browse files

ADD how to use section in README.md

parent 4d8b589b
Branches master
No related tags found
No related merge requests found
# simple lisplike shell # simple lisplike shell
## How to use ## How to use
1. install system dependencies
2. clone repo
3. run `yarn` oder `npm install` from within the repo to install js dependencies
4. run `yarn run start`/`npm start` to compile the grammar and run the interpreter OR
5. just run the interpreter with `node index.js`
System Dependencies: System Dependencies:
- git
- node js - node js
- yarn/npm - yarn/npm
......
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
"pegjs": "^0.10.0" "pegjs": "^0.10.0"
}, },
"scripts": { "scripts": {
"start": "npx pegjs grammar.pegjs && node index.js", "start": "npx pegjs grammar.pegjs && node index.js"
"bundle": "npx parcel "
} }
} }
#!/usr/bin/env bash
npx pegjs grammar.pegjs && node index.js
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment