import { createServer } from "node:http"; export const server = createServer((req, res) => { res.writeHead(200, { "Content-Type": "application/json" }); res.end(JSON.stringify({ hello: "world" })); });