Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moaj257/webstream
https://github.com/moaj257/webstream
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/moaj257/webstream
- Owner: moaj257
- Created: 2020-07-23T17:45:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T09:04:33.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T09:16:39.136Z (over 1 year ago)
- Language: HTML
- Size: 212 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-js-getting-started
A barebones Node.js app using [Express 4](http://expressjs.com/).
This application supports the [Getting Started on Heroku with Node.js](https://devcenter.heroku.com/articles/getting-started-with-nodejs) article - check it out.
## Running Locally
Make sure you have [Node.js](http://nodejs.org/) and the [Heroku CLI](https://cli.heroku.com/) installed.
```sh
$ git clone https://github.com/heroku/node-js-getting-started.git # or clone your own fork
$ cd node-js-getting-started
$ npm install
$ npm start
```Your app should now be running on [localhost:5000](http://localhost:5000/).
## Deploying to Heroku
```
$ heroku create
$ git push heroku master
$ heroku open
```
or[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)
## Documentation
For more information about using Node.js on Heroku, see these Dev Center articles:
- [Getting Started on Heroku with Node.js](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)
- [Best Practices for Node.js Development](https://devcenter.heroku.com/articles/node-best-practices)
- [Using WebSockets on Heroku with Node.js](https://devcenter.heroku.com/articles/node-websockets)