「Expressをインストールする」の版間の差分
提供: Node.js/JavaScript入門
(→インストール) |
|||
行31: | 行31: | ||
-f, --force force on non-empty directory | -f, --force force on non-empty directory | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | == express コマンドが見つからない場合 == | ||
+ | express をインストールしたのに、expressコマンドが見つからない!という場合は、express-generatorをインストールしてください。 | ||
== 関連項目 == | == 関連項目 == | ||
{{Express}} | {{Express}} | ||
<!-- vim: filetype=mediawiki | <!-- vim: filetype=mediawiki | ||
--> | --> |
2019年9月9日 (月) 11:48時点における最新版
概要
インストール
$ sudo npm install -g express jade express-generator
環境変数の設定
export NODE_PATH=/usr/local/lib/node_modules
使い方
$ express -h Usage: express [options] [dir] Options: -h, --help output usage information -V, --version output the version number -s, --sessions add session support -e, --ejs add ejs engine support (defaults to jade) -J, --jshtml add jshtml engine support (defaults to jade) -H, --hogan add hogan.js engine support -c, --css <engine> add stylesheet <engine> support (less|stylus) (defaults to plain css) -f, --force force on non-empty directory
express コマンドが見つからない場合
express をインストールしたのに、expressコマンドが見つからない!という場合は、express-generatorをインストールしてください。
関連項目
- Expressをインストールする
- ExpressによるHello World