Express 应用程序生成器

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

您可以使用 npx 命令(在 Node.js 8.2.0 中可用)运行应用程序生成器。

$ npx express-generator

对于早期的 Node 版本,可将应用程序生成器作为全局 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

For example, the following creates an Express app named myapp. 例如,以下语句在当前工作目录中创建名为 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

在 Windows PowerShell 上,使用以下命令:

PS> $env: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

生成器创建的应用程序结构只是构造 Express 应用程序的众多方法之一。请随意使用此结构或者对其进行修改以最大程度满足自己的需求。 Feel free to use this structure or modify it to best suit your needs.

Edit this page

AltStyle によって変換されたページ (->オリジナル) /