https://github.com/garrettmac/structureddataapi
https://github.com/garrettmac/structureddataapi
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/garrettmac/structureddataapi
- Owner: garrettmac
- License: mit
- Created: 2017-08-11T18:26:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-11T18:26:42.000Z (over 8 years ago)
- Last Synced: 2024-10-06T01:23:18.962Z (about 1 year ago)
- Language: HTML
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Node Express ES6 Starter
A barebones Node.js app using [Express 4](http://expressjs.com/).
## Running Locally
Make sure you have [Node.js](http://nodejs.org/) and the [Heroku Toolbelt](https://toolbelt.heroku.com/) installed.
```sh
git clone https://github.com/mikeerickson/node-express-es6-starter # or clone your own fork
cd node-express-es6-starter
npm install
npm start
```
Your app should now be running on [localhost:3000](http://localhost:3000/).
## Deploying to Heroku
```
heroku create
git push heroku master
heroku open
```
Alternatively, you can deploy your own copy of the app using the web-based flow:
[](https://heroku.com/deploy)
## Documentation
For more information about using Node.js on Heroku, see these Dev Center articles:
- [10 Habits of a Happy Node Hacker](https://blog.heroku.com/archives/2014/3/11/node-habits)
- [Getting Started with Node.js on Heroku](https://devcenter.heroku.com/articles/getting-started-with-nodejs)
- [Heroku Node.js Support](https://devcenter.heroku.com/articles/nodejs-support)
- [Node.js on Heroku](https://devcenter.heroku.com/categories/nodejs)
- [Using WebSockets on Heroku with Node.js](https://devcenter.heroku.com/articles/node-websockets)