diff --git a/src/app.ts b/src/app.ts new file mode 100644 index 0000000..0700824 --- /dev/null +++ b/src/app.ts @@ -0,0 +1,7 @@ +import express from 'express'; +const app = express(); +const PORT = 4010; +app.get('/', (req, res) => res.send('Express + TypeScript Server')); +app.listen(PORT, () => { + console.log(`⚡️[server]: Server is running at http://localhost:${PORT}`); +});