Heroku - lucasjwilber/seattle-301d52 GitHub Wiki

Heroku is a tool that works directly with git and node.js to deploy a project to a web page from the CLI. It is a cloud hosting platform. If you have heroku, git, and node installed, all you need to do is log in to heroku (which can be done from the CLI with 'heroku login'), create an app on heroku where you can push your code (from in your code directory, 'heroku create'), then deploy the code to that app with 'git push heroku master'.