有没有办法在不指定完整路径的情况下 运行 node_modules 中的包?
Is there a way to run a package in node_modules without specifying the full path?
我想在 vs code 的集成终端中 运行 ts-node,但我只能通过指定完整路径来实现。有没有办法像我在屏幕截图中尝试的那样做到这一点。
For this use you should install ts-node GLOBALLY:
npm install -g typescript
npm install -g ts-node
我想在 vs code 的集成终端中 运行 ts-node,但我只能通过指定完整路径来实现。有没有办法像我在屏幕截图中尝试的那样做到这一点。
For this use you should install ts-node GLOBALLY:
npm install -g typescript
npm install -g ts-node