express-generator の使い方
2512 ワード
次のページを参考にしました。
Express のアプリケーション生成プログラム
ライブラリーのインストール
sudo npm install express-generator -g
プロジェクトの作成
express --view=pug myapp
依存関係をインストール
cd myapp
npm install
サーバーの起動
DEBUG=myapp:* npm start
クライアントでポート 3000 にアクセスする
http http://localhost:3000
ソースを改造
views/index.pug
extends layout
block content
h1= title
p Welcome to #{title}
p Hello World!
p こんにちは
forever でデーモン化
ライブラリーのインストール
sudo npm install forever -g
起動
forever start ./bin/www
状況の確認
forever list
停止
forever stopall
ポートを指定しての起動
PORT=5000 forever start ./bin/www
Author And Source
この問題について(express-generator の使い方), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/92003061df3475701fde著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .