Skip to content

Latest commit

 

History

History
105 lines (83 loc) · 2.5 KB

express-generator.md

File metadata and controls

105 lines (83 loc) · 2.5 KB

Express 应用程序生成器

可使用应用程序生成器工具 (express-generator) 快速创建应用程序框架。

yarn add express-generator

将应用程序生成器作为全局 npm 软件包安装,然后启动它。

$ npm install -g express-generator
$ express

使用 -h 选项显示命令选项:

$ express -h

  Usage: express [options][dir]

  Options:

    -h, --help          output usage information
        --version       output the version number
    -e, --ejs           add ejs engine support
        --hbs           add handlebars engine support
        --pug           add pug engine support
    -H, --hogan         add hogan.js engine support
        --no-view       generate without view engine
    -v, --view <engine> add view <engine> support (ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)
    -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

例如,以下语句在当前工作目录中创建名为 myapp 的 Express 应用程序并将视图引擎将设置为 Pug :

$ express --view=pug 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.pug
   create : myapp/views/layout.pug
   create : myapp/views/error.pug
   create : myapp/bin
   create : myapp/bin/www

然后安装依赖项:

$ cd myapp
$ npm install

在 MacOS 或 Linux 上,采用以下命令运行此应用程序:

$ DEBUG=myapp:* npm start

在 Windows 命令提示符上,使用以下命令:

> set DEBUG=myapp:* & npm start

然后在浏览器中输入 http://localhost:3000/ 以访问此应用程序。

生成的应用程序具有以下目录结构:

.
├── app.js
├── bin
   └── www
├── package.json
├── public
   ├── images
   ├── javascripts
   └── stylesheets
       └── style.css
├── routes
   ├── index.js
   └── users.js
└── views
    ├── error.pug
    ├── index.pug
    └── layout.pug

7 directories, 9 files