I try to install ts-node-dev:
npm i ts-node-dev --save-dev
And get the error:
ENOENT: no such file or directory, chmod '/node_modules/ts-node-dev/lib\bin.js'
Refer to open issues #224 and #235 in the GitHub repo.
The current suggested workarounds are either;
Updating npm to the latest version.
Or, install the earlier version 1.0.0-pre.65
.
So you may want to try running the following command in your project directory:
npm un -D ts-node-dev && npm i -D ts-node-dev@1.0.0-pre.65