index.ts 254 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import express from 'express'; const app = express(); const PORT = 8008; app.get('/', (req, res) => res.send('Express + TypeScript Server')); app.listen(PORT, () => { console.log(`⚡️[server]: Server is running at http://localhost:${PORT}`); });