feat: set up app

This commit is contained in:
2025-12-06 16:33:00 +00:00
parent 19ff225762
commit 546573c694

View File

@@ -1 +1,11 @@
console.log("Hello via Bun!");
import express from 'express';
const app = express();
app.get('/', (req, res) => {
res.send('Hello World');
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});