김한준

서버실행파일

Showing 1 changed file with 10 additions and 0 deletions
var express = require('express');
var app = express();
app.get('/',function (req,res) {
res.send('로또 번호 생성 사이트 제작중입니다.');
});
app.listen(3000, function(){
console.log('Server On!');
});
\ No newline at end of file