Proof of Concept project for using Go based Escher implementation from a NodeJS application.
- Clone the repository
npm install
make build
make startornode app.js- open
localhost:3000
The listening port can be modified with the PORT environment variable.
-
tested on Mac OS X 10.12
-
application cannot be stopped with
CTRL-C. However, it can be stopped withkill -9 PID.Eg.
ps | grep "\d node app.js" | cut -d' ' -f1 | xargs -I {} kill -9 {}