main.js 427 Bytes
var express = require('express')
var app = express();
var path = require('path')

var server = app.listen(8080,function(){
    console.log("hello");
})

app.get('/',function(req,res){
    return res.sendFile(__dirname +'/html/coin.html')
});

app.get('/map',function(req,res){
    return res.sendFile(__dirname +'/html/map.html')
});

app.use(express.static(path.join(__dirname + 'public')));
//css 파일, jpg 파일 연동 x.