이준용

1차수정

Showing 1 changed file with 10 additions and 0 deletions
var express = require('express');
var app = express();
var server = app.listen(3000,function(){
console.log("Express server has started on port 3000")
})
app.get('/',function(req,res){
res.send("hello");
// res.sendFile('index.html', { root: __dirname });
});
\ No newline at end of file