Node/Express application with an MVC architecture
First, install Yeoman and generator-node-express-mvc using npm (we assume you have pre-installed node.js).
To use any of the database features, you'll want PostgreSQL installed. We'd recommend installing with Homebrew if you're on a Mac.
npm install -g yo
npm install -g generator-node-express-mvcThen generate your new project:
yo node-express-mvcFollow the instructions at the end to setup your database and start the dev server.
createdb [YOUR DB NAME]_dev
npm run setup
npm run devMIT © Wes Reid