Heroku is a hosted platform which lets you deploy apps from different languages; Python, Ruby, Node etc. It is a quick way to get your app
online without the hassle of setting up a server.
Install GIT
Install the Heroku Toolbelt
var port = process.env.PORT || 3000 {listen on port}
`cd myapp
git init
Initialized empty Git repository in .git/
git add .
git commit -m "My first commit"`
"engines":{
"node":"10.12.0"
}
{process}: {command to run}
web: node app.js
||commit changes
heroku create {app_name}
git push heroku master
git push heroku master
heroku local
heroku open