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
- Host: GitHub
- URL: https://github.com/ekaone/deploy-now-express
- Owner: ekaone
- Created: 2020-04-29T05:34:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T15:17:27.000Z (over 3 years ago)
- Last Synced: 2025-05-30T22:46:34.965Z (about 1 year ago)
- Topics: deployment, expressjs, json, route, vercel, vercel-now
- Language: JavaScript
- Homepage: https://deploy-now-express.now.sh
- Size: 150 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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"]
}
]
}
```