index.js
Anonymous
javascript
11/22/2024 1:06 PM
228 B
13
Indexable
//index.js
const app = require("./app.js");
// Define PORT
const port = 5000;
const server = app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
Editor is loading...
Leave a Comment