Noob here. I made a simple node.js app. It works fine on my "localhost:3000" with this:
app.listen(3000, function (){
console.log('Server started');
});
Now, I want to make it available from my website. How do I do that?
Noob here. I made a simple node.js app. It works fine on my "localhost:3000" with this:
app.listen(3000, function (){
console.log('Server started');
});
Now, I want to make it available from my website. How do I do that?