ansijet icon indicating copy to clipboard operation
ansijet copied to clipboard

Fails to run. SyntaxError: Unexpected token *

Open jagibson opened this issue 9 years ago • 2 comments

Fails to run on Ubuntu 14.04.02 LTS

$ nodejs -v v0.11.15

$ NODE_ENV=production ./start-app.js /usr/bin/env: node --harmony: No such file or directory

$ NODE_ENV=production nodejs ./start-app.js /home/vagrant/ansijet/start-app.js:14 co(function*() { ^ SyntaxError: Unexpected token * at exports.runInThisContext (vm.js:73:16) at Module._compile (module.js:443:25) at Object.Module._extensions..js (module.js:478:10) at Module.load (module.js:355:32) at Function.Module._load (module.js:310:12) at Function.Module.runMain (module.js:501:10) at startup (node.js:129:16) at node.js:814:3

jagibson avatar Jul 02 '15 16:07 jagibson

It needs the --harmony command-line flag to work. I'm slowly working on a new version which will auto-fix this.

hiddentao avatar Jul 03 '15 02:07 hiddentao

resolved --harmony issue by changing start-app.js From, #!/usr/bin/env node --harmony To, #!/usr/bin/node --harmony Note: based on distribution , try using whereis command to identify node path

For SyntaxError: Unexpected token * Install node version and npm in below version:

node -v

v6.11.0

npm -v

3.10.10

navindharman avatar Jun 17 '17 07:06 navindharman