-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
examples - static on linux = Error: spawn node ENOENT #16
Comments
Exactly the same problem on Windows 10. |
It seems like the issue is inside the library being used for the |
Have you found a solution for this yet? |
I think this error occurs because the client is called before server is started. My temp solution is working... .progress(function (childProcess) {
debug('Command started. [PID: ' + childProcess.pid + ']');
self.emit('child-started', childProcess);
//wait for log from server...
childProcess.stdout.on('data', function(buffer) {
var out = buffer.toString();
if(out.indexOf('Server lifted') > -1){
start(cfg, app, childProcess, debug);
}
});
}); |
@mackenrou Your solution didn't work for me. Still |
But running node on the command line works:
node server.js
The text was updated successfully, but these errors were encountered: