+ 1
backend/web server
may i know how to use node js/python as backend on remote server(online web hosting) instead of localhost? and how can i do to make the server keep running?(website always available to other user) im kinda new to this thing,so it sorta confused me ..tq
2 Answers
+ 1
You can use hosting services by other companies to run your python/nodejs servers. The best ones are Amazon Web Services (AWS) and Microsoft Azure. If you want free hosting you can go to Google Firebase.
0
Your can create a Linux instance on aws, install node.js and other npm packages. Kick start the server by command npm start.
The better way to deploy node.js server app is using docker to build your own container that could be run from localhost as well as remote web server.