feat: Added backend server with home page message
This commit is contained in:
parent
226af5bf41
commit
8a17e5077c
7
backend/server.js
Normal file
7
backend/server.js
Normal file
@ -0,0 +1,7 @@
|
||||
const express = require('express');
|
||||
|
||||
const app = express();
|
||||
|
||||
app.get('/', (req, res) => res.send('Your backend server is running correctly'));
|
||||
|
||||
app.listen(5000, () => console.log('Server is running on port 5000'));
|
||||
Loading…
Reference in New Issue
Block a user