An open API service indexing awesome lists of open source software.

https://github.com/ekaone/deploy-now-express

Simple config for deployment with Vercel now and ExpressJS
https://github.com/ekaone/deploy-now-express

deployment expressjs json route vercel vercel-now

Last synced: about 1 month ago
JSON representation

Simple config for deployment with Vercel now and ExpressJS

Awesome Lists containing this project

README

          

## Deploy a Basic Node App using Now

Cretae `now.json` and set your desired `route` like an example below:
```
{
"version": 2,
"builds": [{ "src": "index.js", "use": "@now/node-server" }],
"routes": [
{
"src": "/users",
"dest": "/index.js",
"methods": ["GET"]
},
{
"src": "/user",
"dest": "/index.js",
"methods": ["POST"]
}
]
}
```