How do I deploy a node.js script on Vercel? [closed]

So I have a simple node.js script that I need running 24/7. I currently have the script running on my laptop. There are only two files in the project folder: index.js and a .env file. I start the script with “node index.js” and then leave my computer running.

I don’t want to leave my computer running anymore, how do I deploy this on Vercel?

Leave a Comment