最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to deploy Node.js REST API to production mode - Stack Overflow

programmeradmin1浏览0评论

I've created a REST API using Node.js and Express, so now I need to share it and publish it on a server in order to connect from Front-end. Can you tell me a proper way to do it?

I've created a REST API using Node.js and Express, so now I need to share it and publish it on a server in order to connect from Front-end. Can you tell me a proper way to do it?

Share Improve this question edited Dec 16, 2017 at 12:33 codejockie 10.9k4 gold badges48 silver badges57 bronze badges asked Dec 16, 2017 at 10:26 Камилов ТимурКамилов Тимур 8982 gold badges14 silver badges30 bronze badges 2
  • There's official tips here, just FYI: expressjs./en/advanced/best-practice-performance.html – Faizuddin Mohammed Commented Dec 16, 2017 at 13:38
  • And for deploying, here: docs.aws.amazon./elasticbeanstalk/latest/dg/… – Faizuddin Mohammed Commented Dec 16, 2017 at 13:39
Add a ment  | 

3 Answers 3

Reset to default 3

You could use Heroku for deployment, this way you can know how your app will fare. It's free moreover.
If you're satisfied with it then you can go ahead and buy a dyno or use other platforms like Azure or AWS.

To learn more on how to deploy your existing app to Heroku, visit this page.

The question you are asking is very broad. It can be done in a lot of ways. For me this 2 part tutorial was very helpful: https://hackernoon./tutorial-creating-and-managing-a-node-js-server-on-aws-part-1-d67367ac5171. However, this only covers the installation on AWS EC2. This doesn't differ much from deploying it to Google Cloud, Azure or something local.

In general you need to fix the following steps:

1) Create a server somewhere (local or in the cloud)

2) Install all the stuff to run your app. In your case Node.js at least

3) Put a copy of your app on the server

4) Run it with node

5) Go to the ip of the server

The tutorial gives more details. DISCLAIMER: If you actually want to use this in production there is way more to consider. For example, security policies, setting up proxies, installing certificates etc. Please read up on that properly before you start running production apps.

You can install node on the the production server and then where the project is situated just .

copy that path

Open the Cmd >>

Enter "cd copied path .>>enter

you npm will be install & REST Api will Work.

发布评论

评论列表(0)

  1. 暂无评论