The error isn’t with node-dev
, but rather in your script. Error: uv_signal_start EINVAL
is thrown in newer versions of node when you’re trying to work with SIGKILL
or SIGSTOP
, like so:
process.on('SIGKILL', function() { // etc, etc
You probably got away with this in earlier versions, but newer versions will now throw this error (see this GitHub issue for details).