Flare-k

connect server test

const express = require("express");
const app = express();
const PORT = 80;
function handleListening() {
console.log(`Listening on: http://localhost:${PORT}`);
}
app.listen(PORT, handleListening);
\ No newline at end of file
......
......@@ -14,5 +14,8 @@
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
},
"scripts": {
"start": "node index.js"
}
}
\ No newline at end of file
......