溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Express應(yīng)用生成器

發(fā)布時(shí)間:2020-07-19 17:23:08 來源:網(wǎng)絡(luò) 閱讀:556 作者:Keepuping 欄目:開發(fā)技術(shù)

通過應(yīng)用生成器工具express可以快速創(chuàng)建一個(gè)應(yīng)用的骨架。通過如下命令安裝:

sudo npm install express-generator -g

-h選項(xiàng)可以列出所有可用的命令行選項(xiàng)

express -h

  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

使用express myapp 命令就可以創(chuàng)建一個(gè)myapp的應(yīng)用:

express myapp

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

   install dependencies:
     $ cd myapp && npm install

   run the app:
     $ DEBUG=myapp:* npm start

然后安裝所有依賴包:

$ cd myapp 
$ npm install

啟動(dòng)這個(gè)應(yīng)用(MacOS 或 Linux 平臺(tái)):

$ DEBUG=myapp npm start

Windows 平臺(tái)使用如下命令:

> set DEBUG=myapp & npm start

然后在瀏覽器中打開 http://localhost:3000/ 網(wǎng)址就可以看到這個(gè)應(yīng)用了。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI