Deploy Node servers with zero configuration (opens in new tab)
**Published:** June 23, 2026 | **Authors:** Ricardo Gonzalez , Jeff See --- You can now deploy a Node.js server to Vercel with zero configuration. Vercel detects a `server.ts` file at the project root or at `src/server.ts` and deploys it as a Node.js application, in addition to existing zero-configuration backends like Express, Koa, and NestJS: **server.ts** ```typescript import { createServer } from 'node:http' const server = createServer((req, res) => { res.end('Hello from Node.js on V...
Read the original article