node-backend-example/src/index.js

9 lines
154 B
JavaScript
Raw Permalink Normal View History

2024-01-13 02:19:49 +01:00
// Importing express
import app from "./app.js";
2024-01-13 02:19:49 +01:00
(() => {
app.listen(3000, () => {
console.log('Server started on port 3000');
});
})();