共计 1593 个字符,预计需要花费 4 分钟才能阅读完成。
Express 应用程序生成器
使用应用程序生成器工具 express-generator 快速创建应用程序框架。
express-generator 包安装了 express 命令行工具,使用以下命令执行此操作:
$ npm install express-generator -g
使用 - 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 应用程序,该应用程序将在当前工作目录中创建在名为 myapp 的文件夹中,并且视图引擎将设置为 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
生成器创建的应用程序结构只是构建 Express 应用程序的众多方法之一,随意使用此结构或修改它以最好地满足你的需求。
上一篇:Hello world
下一篇:路由基础