Posts

Showing posts from December, 2019

Three ways to deploy Node.Js applications quickly

Image
Have you developed a node application recently and would like to flaunt it? If yes, you have reached the correct page.  Before you begin deploying your project, I recommend that you upload it to git profile first. Following are three super easy ways to deploy your node project: 1.  Glitch This tool is very easy to use. After you have made a new repository for your project on GitHub, you can just easily click on "Clone from Git Repo" as shown in the image(below). Wait for some time for glitch to fetch the required files. After that a URL will be provided at which your application is hosted. Cheers, your app is live!!. 2. Heroku Although it might be super easy to deploy your project on glitch but it might cause problems on a long run.Therefore, I suggest to deploy your app with heroku. For that you will need heroku CLI.  MacOs: brew install heroku/brew/heroku Windows:   64 bit , 32 bit Linux: sudo snap install heroku --classic After doing