유현수

add main.js

Showing 1 changed file with 18 additions and 0 deletions
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.
\ No newline at end of file