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

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

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')
});