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