김현기

aws domain 연결 test

node_modules
\ No newline at end of file
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World');
})
var server = app.listen(23023, function () {
var host = server.address().address
var port = server.address().port
console.log("Example app listening at http://%s:%s", host, port)
})
This diff is collapsed. Click to expand it.
{
"name": "oss-project",
"version": "1.0.0",
"description": "KindOfYourDog",
"main": "app.js",
"dependencies": {
"aws-sdk": "^2.689.0",
"express": "^4.17.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start":"node app.js"
},
"repository": {
"type": "git",
"url": "ssh://git@khuhub.khu.ac.kr:12959/2016101156/OSS-Project.git"
},
"author": "",
"license": "ISC"
}