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
......
{
"name": "myyoutube",
"version": "1.0.0",
"description": "make Youtube Website",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://git@khuhub.khu.ac.kr:12959/2017110267/myYoutube.git"
},
"author": "Kang Yeon Wook",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
}
}
"name": "myyoutube",
"version": "1.0.0",
"description": "make Youtube Website",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://git@khuhub.khu.ac.kr:12959/2017110267/myYoutube.git"
},
"author": "Kang Yeon Wook",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
},
"scripts": {
"start": "node index.js"
}
}
\ No newline at end of file
......