1. Create a free Vercel hobbiest account.
  2. Add vercel.json file to the root of your project and fill with the following. Replace index.js with your server file name;
{
	"version": 2,
	"builds": [
		{
			"src": "index.js",
			"use": "@now/node"
		}
	],
	"routes": [
		{
			"src": "/(.*)",
			"dest": "index.js"
		}
	]
}
  1. Upload your project to a GitHub repository.

  2. Goto Vercel account create a new project.

  3. Choose the repository that you want to run as a backend service.

  4. Follow the instructions.

  5. After the project deployed do not forget to update the endpoint address in your project.