Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Zero-configuration Express backends - Vercel

Vercel News·Jeff See·4 days ago
#tikkH41L
#vercel#express#framework#hello#world#photo
Reading 0:00
15s threshold

Express, a fast, unopinionated, minimalist web framework for Node.js, is now supported with zero-configuration.

import express from 'express'

const app = express()

app.get('/', (req, res) => {

res.send('Hello World!')

})

export default app

A "Hello World" Express.js app on Vercel

Vercel's framework-defined infrastructure now recognizes and deeply understands Express applications. This update removes the need for redirects in vercel.json or using the /api folder.

Deploy Express on Vercel or visit the Express on Vercel documentation.

Read More