Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Generator | 1,705 | 570 | 58 | a year ago | 22 | May 03, 2019 | 58 | mit | JavaScript | |
Express' application generator | ||||||||||
Greedux | 16 | 5 years ago | 33 | September 24, 2017 | 1 | JavaScript | ||||
A clean workspace/workflow template supporting React, Redux, Material-UI, Live Reload as well as Deployable Express server to create maintainable and modular front-end web apps. | ||||||||||
Coppa | 11 | 3 years ago | apache-2.0 | JavaScript | ||||||
🏇 A CLI tool for local development of serverless Google Cloud Functions | ||||||||||
Node Express Htaccess Middleware | 9 | 1 | 1 | 7 years ago | 2 | August 06, 2017 | 2 | JavaScript | ||
An express middleware that interprets .htaccess rewrite rules. | ||||||||||
N Express | 8 | 2 days ago | 12 | JavaScript | ||||||
Slightly enhanced Express. | ||||||||||
Route | 7 | 2 | 1 | 5 months ago | 28 | December 13, 2020 | mit | JavaScript | ||
Express routing defined by a directory structure | ||||||||||
Neff | 3 | 3 years ago | 1 | other | JavaScript | |||||
nconf & express based feature flags | ||||||||||
Clip | 3 | 12 years ago | 1 | mit | JavaScript | |||||
Express meets the CLI | ||||||||||
Geo Trainer | 2 | 10 months ago | JavaScript | |||||||
Practice country flags, capitals and shapes using this geo-trainer! | ||||||||||
Tegel | 2 | 3 years ago | 11 | JavaScript | ||||||
A simple feature toggle service for Node.js |
Express' application generator.
$ npm install -g express-generator
The quickest way to get started with express is to utilize the executable express(1)
to generate an application as shown below:
Create the app:
$ express --view=hbs /tmp/foo && cd /tmp/foo
Install dependencies:
$ npm install
Start your Express.js app at http://localhost:3000/
:
$ npm start
This generator can also be further configured with the following command line flags.
--version output the version number
-e, --ejs add ejs engine support
--pug add pug engine support
--hbs add handlebars engine support
-H, --hogan add hogan.js engine support
-v, --view <engine> add view <engine> support (dust|ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)
--no-view use static html instead of view engine
-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
-h, --help output usage information