수업소개
Express의 Route 기능을 중심으로 홈페이지 기능을 구현해보겠습니다.
강의
소스코드
main.js (변경사항)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | var express = require( 'express' ) var app = express() var fs = require( 'fs' ); var template = require( './lib/template.js' ); //route, routing //app.get('/', (req, res) => res.send('Hello World!')) app.get( '/' , function (request, response) { fs.readdir( './data' , function (error, filelist){ var title = 'Welcome' ; var description = 'Hello, Node.js' ; var list = template.list(filelist); var html = template.HTML(title, list, `<h2>${title}</h2>${description}`, `<a href= "/create" >create</a>` ); response.send(html); }); }); app.get( '/page' , function (req, res) { return res.send( '/page' ); }); app.listen(3000, function () { console.log( 'Example app listening on port 3000!' ) }); |