Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasisasmendi/bitstarter
node-js-sample.git hw3
https://github.com/lucasisasmendi/bitstarter
Last synced: 25 days ago
JSON representation
node-js-sample.git hw3
- Host: GitHub
- URL: https://github.com/lucasisasmendi/bitstarter
- Owner: LucasIsasmendi
- Created: 2013-07-24T04:24:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-08T02:07:01.000Z (over 11 years ago)
- Last Synced: 2024-04-15T13:24:50.027Z (8 months ago)
- Language: JavaScript
- Size: 805 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-js-sample
This is a barebones Node.js app using the [Express](http://expressjs.com/) framework.
## Running Locally
Asumming you have [Node.js](http://nodejs.org/) and [Heroku Toolbelt](https://toolbelt.heroku.com/) installed on your machine:
```sh
git clone [email protected]:heroku/node-js-sample.git # or clone your own fork
cd node-js-sample
npm install
foreman start
```Your app should now be running on [localhost:5000](http://localhost:5000/).
## Deploying to Heroku
```
heroku create
git push heroku master
heroku open
```## Documentation
For more information about using Node.js on Heroku, see these Dev Center articles:
- [Getting Started with Node.js on Heroku](https://devcenter.heroku.com/articles/nodejs)
- [Heroku Node.js Support](https://devcenter.heroku.com/articles/nodejs-support)
- [Building a Real-time, Polyglot Application with Node.js, Ruby, MongoDB and Socket.IO](https://devcenter.heroku.com/articles/realtime-polyglot-app-node-ruby-mongodb-socketio)
- [Using Socket.IO with Node.js on Heroku](https://devcenter.heroku.com/articles/using-socket-io-with-node-js-on-heroku)