Usage: express [options] [dir] Options: -h, --help output usage information --version output version number -e, --ejs add ejs engine support --hbs add hbs engine support --pug add pug engine support -H, --hogan add hogan.js engine support --no-view No view engine generated -v, --view <engine> add view <engine> support (ejs|hbs|hjs|jade|pug|twig|vash) (default jade) -c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (default css) --git add .gitignore -f, --force force non-empty directories 

Create a myapp project

$ express --view=pug myapp # run the application $ DEBUG=myapp:*npm start 
Comments