https://github.com/lissy93/digital-bucket-web-analytics
node.js web app displaying visual analytic for money donated to charities via the digital bucket app
https://github.com/lissy93/digital-bucket-web-analytics
Last synced: 8 months ago
JSON representation
node.js web app displaying visual analytic for money donated to charities via the digital bucket app
- Host: GitHub
- URL: https://github.com/lissy93/digital-bucket-web-analytics
- Owner: Lissy93
- Created: 2015-05-04T10:58:21.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-06-11T11:48:34.000Z (about 2 years ago)
- Last Synced: 2025-04-07T08:31:58.791Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://vast-crag-4177.herokuapp.com/map
- Size: 86.9 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
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 support the [Getting Started with Node on Heroku](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 Toolbelt](https://toolbelt.heroku.com/) installed.
```sh
$ git clone git@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
```
## 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/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)