有没有办法在不指定完整路径的情况下 运行 node_modules 中的包?

Is there a way to run a package in node_modules without specifying the full path?

我想在 vs code 的集成终端中 运行 ts-node,但我只能通过指定完整路径来实现。有没有办法像我在屏幕截图中尝试的那样做到这一点。

Installing a package globally allows you to use the code in the package as a set of tools on your local computer.

For this use you should install ts-node GLOBALLY:

npm install -g typescript
npm install -g ts-node