Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试安装 ts-node-dev:
npm i ts-node-dev --save-dev
并得到错误:
ENOENT:没有这样的文件或目录,chmod '/node_modules/ts-node-dev/lib\bin.js'
请参阅GitHub 存储库中的未解决问题#224和#235 。
当前建议的解决方法是:
将 npm 更新到最新版本。
或者,安装早期版本1.0.0-pre.65。
1.0.0-pre.65
因此,您可能想尝试在项目目录中运行以下命令:
npm un -D ts-node-dev && npm i -D ts-node-dev@1.0.0-pre.65