admin管理员组文章数量:1350105
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
3 Answers
Reset to default 3You 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.
本文标签: javascriptHow to deploy Nodejs REST API to production modeStack Overflow
版权声明:本文标题:javascript - How to deploy Node.js REST API to production mode - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743869610a2553222.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论