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.
使用 npm 安装软件包后。然后我想使用这个包,我需要重启nodejs吗?如果是,为什么?
是的。模块在第一次需要时被缓存,如果您使用在运行时更新的模块,npm install运行过程将继续使用缓存的版本。
npm install
您可以使用 Node-dev 模块,它会在您进行任何更改时自动重新启动您的服务器
https://github.com/fgnass/node-dev