2016-04-23 7 views
0

をfound`ない私は走っていた特急インストールするには、このtutorialを使用しています:は-bash found`ないExpressの場合:表現:コマンドを

$ sudo npm install -g express

それが正常に渡さ:

Password: 
[email protected] /usr/local/lib/node_modules/express 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] 
├── [email protected] ([email protected]) 
├── [email protected] ([email protected]) 
├── [email protected] ([email protected]) 
├── [email protected] ([email protected], [email protected]) 
├── [email protected] ([email protected], [email protected]) 
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected]) 
└── [email protected] ([email protected], [email protected] 

をチュートリアルのように実行しようとすると、

$ express donuts

私が手:

-bash: express: command not found

私は何かが足りないのですか?

+0

expressは '$ PATH'変数には含まれません。 export PATH = $ PATH:/ path/to/express/'を使って、その場所を' PATH' varailbeにエクスポートします。 – selyunin

答えて

1

エクスプレスアプリケーションスケルトンを作成するには、Expressにコマンドラインツール(express-generator:アプリケーションジェネレータツール)を用意し、これを使用してアプリケーションスケルトンをすばやく作成できます。

は、次のコマンドでexpress-generatorをインストールします。次のコマンドを使用して

$ sudo npm install express-generator -g 

そして成功したインストレーションチェックインストール版の後:利用可能なコマンドオプションを表示するには

$ express -V 

は、-hオプションを使用します。

$ express --help 

    Usage: express [options] [dir] 

    Options: 

    -h, --help   output usage information 
    -V, --version  output the version number 
    -e, --ejs   add ejs engine support (defaults to jade) 
     --hbs   add handlebars engine support 
    -H, --hogan   add hogan.js engine support 
    -c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (defaults to plain css) 
     --git   add .gitignore 
    -f, --force   force on non-empty directory 

そして、次のようにしてE myappの現在の作業ディレクトリ内という名前XPRESSアプリ:あなたがアプリケーションジェネレータを表現していないグローバル急行のフレームワークをインストールしている、あなたの場合は

$ npm install 

:依存関係をインストールするには

$ express myapp 

    create : myapp 
    create : myapp/package.json 
    create : myapp/app.js 
    create : myapp/public 
    create : myapp/public/javascripts 
    create : myapp/public/images 
    create : myapp/routes 
    create : myapp/routes/index.js 
    create : myapp/routes/users.js 
    create : myapp/public/stylesheets 
    create : myapp/public/stylesheets/style.css 
    create : myapp/views 
    create : myapp/views/index.jade 
    create : myapp/views/layout.jade 
    create : myapp/views/error.jade 
    create : myapp/bin 
    create : myapp/bin/www 

は、次のコマンドを実行します。ツール。複数の基準については

には、以下のリンクを参照してください - これはあなたを助けるhttp://expressjs.com/en/starter/generator.html

希望を!

関連する問題