https://github.com/johnfoderaro/turbo-pancake
Express App Scaffold with EJS
https://github.com/johnfoderaro/turbo-pancake
Last synced: 8 months ago
JSON representation
Express App Scaffold with EJS
- Host: GitHub
- URL: https://github.com/johnfoderaro/turbo-pancake
- Owner: johnfoderaro
- License: mit
- Created: 2016-12-10T18:07:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-25T21:15:50.000Z (almost 9 years ago)
- Last Synced: 2025-02-08T07:13:04.318Z (about 1 year ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Express App Scaffold with EJS
This project serves as my re-usable scaffold for whenever I roll a new Express app. It has the following base set up, ready to use:
- `bin/www` set and configured
- `app.js` initial setup
- `routes/` with a sample home page
- `views/` with a sample home page using EJS
- `public/` for serving client side assets
- Other items like `.gitignore`, `.jshintrc`, `.travis.yml`, etc.
Chai and Mocha are included in `package.json` too (remember, test driven development 😇), along with two Express specific items, such as `helmet` and `body-parser`.
## Getting Started
- Clone this repository
- Re name it accordingly
- Remove this `.git` directory, add your own
- Replace this `readme.md` with your own
- `cd` to the project, then `npm i`
- `npm start` and then visit localhost:3000
Feel free to share, fork, clone -- whatever! 🍻