0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

グローバルインストールなしで nodemon を使用する

Last updated at Posted at 2019-02-27

はじめに

Node.jsで開発中、修正が終わるたびに再起動するはなかなかの手間になり、
ストレスがたまります。そこでソース修正後に自動再起動してくれるnodemonの登場です。

nodemonはグローバルにインストールして使われることが多いようですが、
今回はnodemonをローカルインストールで動かす方法を調べてみました。

インストール

$ npm install --save-dev nodemon

この例では開発依存としてインストールしました。
--save-dev の代わりに --save を使用して、通常の依存としてインストールしても問題ありません。

package.jsonを編集

その後、package.jsonを以下のようにを編集します。

package.json
"scripts": {
  "start": "nodemon index.js"
}, 

index.jsは適宜実行したいファイル名に置き換えてください。

サーバーを起動

$ npm start

以上で、ファイル修正後にnodemonが自動で再起動してくれるようになりました。

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?