Add initial dev server

This commit is contained in:
2025-12-07 15:55:05 -08:00
parent b695437415
commit 48a044cbd5
6 changed files with 1830 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
import express from 'express';
const app = express();
const PORT = 3001;
app.use(express.json());
app.get('/api/hello', (req, res) => {
res.json({ message: 'Hello World!' });
});
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});