-3

I am new in node js, I am developing an app in Node+express+mongo+react. Where Should I host this app for production, How do I manage the server? Like how to check if the site is working well, any error, scalability etc?

Is there any managed server for Node js available in the market? currently, our all servers are VPS with Cpanel installed on Linode, we are running php websites on that, can I use that for node js.

Please help if someone has pushed the site from local to production use with high scalability.

  • You don't even need a full-fledged server (or VPS). You can host your Node app in "the cloud". Look at [Bluemix](https://www.ibm.com/blogs/bluemix/2017/01/get-started-building-node-js-bluemix-10-minutes-less/), [Azure](https://learn.microsoft.com/en-us/azure/app-service/app-service-web-get-started-nodejs) or [AWS](https://aws.amazon.com/getting-started/projects/deploy-nodejs-web-app/). – paulsm4 Sep 12 '18 at 07:22
  • Thanks @paulsm4 , Is it worth to go with AWS? Will it cost enough then other companies like Digital Ocean ? – Remi Mahajan Remi Sep 12 '18 at 08:46

1 Answers1

0

If you need a hosting service managed by other companies to deploy your node app, the you can use AWS or Heroku.

Or you can also have a Linux server from DigitalOcean, but in this case you have to figure how to configure the server.

I also managed to deploy a node app in Windows Server 2016 / IIS using iisnode tool: https://github.com/tjanczuk/iisnode

Optimist GM
  • 175
  • 1
  • 1
  • 8
  • Hi @Optimist, thanks for the answer, which one is better and not too expensive, I need to finalize today – Remi Mahajan Remi Sep 12 '18 at 08:47
  • In your case, I think you can go for DigitalOcean. The pricing starts from $5.00 per month. Here is the list of pricing: https://www.digitalocean.com/pricing/ – Optimist GM Sep 12 '18 at 11:44