diff --git a/Backend/index.ts b/Backend/index.ts index f67b2c6..b7a8e53 100644 --- a/Backend/index.ts +++ b/Backend/index.ts @@ -1 +1,11 @@ -console.log("Hello via Bun!"); \ No newline at end of file +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'); +}); \ No newline at end of file