astro/examples/ssr/server/dev-api.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
399 B
JavaScript
Raw Normal View History

import { createServer } from 'http';
import { apiHandler } from './api.mjs';
const PORT = process.env.PORT || 8085;
const server = createServer((req, res) => {
2022-02-14 17:50:16 +00:00
apiHandler(req, res).catch((err) => {
console.error(err);
res.writeHead(500, {
2022-02-14 17:50:16 +00:00
'Content-Type': 'text/plain',
});
res.end(err.toString());
2022-02-14 17:50:16 +00:00
});
});
server.listen(PORT);
console.log(`API running at http://localhost:${PORT}`);