I'm having 2 problems with this as well. On My CentOS VPS I get an error:
Problem 1:
The command I use is
git clone g...@github.com:witheve/eve-starter.git
The result I get is
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Using the HTTPS option instead, the cloning appears to succeed.
However, when I do npm install I get a warning
npm WARN lifecycle witheve...@0.1.1~postinstall: cannot run in wd %s %s (wd=%s) witheve...@0.1.1 tsc /root/tmp/tmp/eve-starter
witheve...@0.1.1 /root/tmp/tmp/eve-starter
and when I then try to do
npm start
the result is
> witheve...@0.1.1 start /root/tmp/tmp/eve-starter
> node build/src/cli.js
module.js:471
throw err;
^
....
Tell the author that this fails on your system:
npm ERR! node build/src/cli.js
In fact there is no directory called build on my system. But there is a directory called src that contains a file called cli.ts
Any ideas?
Thanks.