OneCompiler

Deployment

380

In this post, I am going to explain deploying node applications. Basically, we have two options to deploy our application they are

  1. Paas

  2. Docker

Differences between the above two are

Paas:
Platform as a service is a great option if we don't get involved with infrastructures like servers, load balancer, reverse proxy and much more.

We have some options like Heroku, Google Cloud Platform, AWS and Azure.

Docker:
If you want more control over your deployment, If we want to deploy node application to our own web server then docker is a great option.

Using docker we can easily create an image of your application and simply deploy that image any computers we want.