update/app initialization
This commit is contained in:
1 file changed
+9
@@ -0,0 +1,9 @@
|
||||
const express = require("express");
|
||||
const path = require("path");
|
||||
|
||||
const app = express();
|
||||
const port = 8000;
|
||||
|
||||
app.listen(port, () => {
|
||||
console.log(`Server listening on port ${port}`);
|
||||
});
|
||||
Reference in new issue
Block a user