This commit is contained in:
Kajal Thakur 2024-12-18 16:55:17 +05:30
parent d1e1d6cdd0
commit df387ea969

View File

@ -155,7 +155,7 @@ app.delete("/items/:id", (req, res) => {
}); });
// Start server // Start server
const PORT = 3000; const PORT = 8080;
app.listen(PORT, () => { app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`); console.log(`Server is running on http://localhost:${PORT}`);
}); });