run_server.js 648 Bytes
// 서비스 제공을 위한 html 홈페이지를 express로 구현하기 (기본적인 뼈대)
var express = require('express')
var app = express(); // express 선언
const port = 10000 //임의의 포트 10000

// request 와 response 라는 인자를 줘서 콜백 함수를 만든다.
// localhost:port 브라우저에 res.sendFile() 내부의 파일이 띄워진다.
app.use(express.static(__dirname + "/html"));

app.get('/', function(req,res) {
    res.sendFile(__dirname + "/html/index.html")
})

//임의의 포트 10000, 접속 주소 localhost:10000/
app.listen(port, function(){
    console.log('서버 구동중 port : %d', port);
});