2
2

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.

node.js Tips

Last updated at Posted at 2017-11-23

ソースコード修正するたびに、npm startするのはめんどくさい

ソースコードを変更すると自動でサーバーをrestartしてくれるnodemonを使おう

npm i -g nodemon

以降
nodemon start
でサーバー実行

参考:https://qiita.com/twipg/items/cb969b335d66c4aee690

npm コマンド集

参考:https://qiita.com/yoh-nak/items/8446bf12094c729d00fe

Jade

npm install -g jade

書き方の参考:https://blog.mismithportfolio.com/web/20160117jadebeginner

対象jadeファイルが存在するディレクトリにて
下記コマンドでhtmlに書き出しを行い確認可能

jade top.jade --pretty

同じディレクトリにhtmlファイルが作成される

forever

いちいちサーバーを起動しなくても済む
ただし、ソースコードを変更などした場合はrestartする必要あり

2
2
0

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?