Amok(1)
![Dependency Status](https://img.shields.io/gratipay/caspervonb.svg)
Synopsis
amok [options] <script>
Description
Amok is a command line tool for rapid prototyping and development of applications
written in JavaScript targeting the browser.
Code with realtime feedback, without having to reload the client.
export BROWSER="google-chrome --remote-debugging-port=9222"
export BUNDLER="watchify"
amok myapp.js
Options
-h, --host <HOST>
specify the http host, default HOST is localhost.
-p, --port <PORT>
specify the http port, default PORT is 9966.
-H, --debugger-host <HOST>
specify the remote debugger host, default HOST is localhost.
-P, --debugger-port <PORT>
specify the remote debugger port, default PORT is 9222.
--no-browser
disable browser spawning
--no-bundler
disable bundling
--no-debugger
disable remote debugger
Any extra arguments will be passed along with the invocation to BUNDLER.
Environment Variables
BROWSER
When set to a executable, will be opened after the server has started.
BUNDLER
When set to an executable, will be used to bundle scripts.