Skip to content
Snippets Groups Projects
index.ts 234 B
Newer Older

import express from 'express';

const app = express();
const PORT = 8000;
app.get('/', (_, res) => res.send('Hello world!'));

app.listen(PORT, () => {
    console.log(`[server] Server is running at https://localhost:${PORT}`);
});