Expressをインストールする

提供: Node.js/JavaScript入門
2014年4月5日 (土) 21:31時点におけるDaemon (トーク | 投稿記録)による版 (ページの作成:「node.jsExpressをインストールします。 __TOC__ == 概要 == Expressは、npmコマンドでインストールします。 == インストー...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
スポンサーリンク

node.jsExpressをインストールします。

概要

Expressは、npmコマンドでインストールします。

インストール

$ sudo npm install -g express

使い方

$ 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

関連項目




スポンサーリンク