김한준

서버실행파일

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