Node.js 강좌 자료] Express 사용 예제
Node.js 강좌 자료] Express 사용 예제
실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.
Express 사용 예제
- 단순 요청 처리
const express = require('express')
const app = express()
const port = 8081
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`http://localhost:${port}로 기동했습니다`)
})
http://localhost:8081로 기동했습니다
'자바' 카테고리의 다른 글
Node.js 강좌 자료] 미들웨어 (0) | 2017.11.26 |
---|---|
Node.js 강좌 자료] Request & Response (0) | 2017.11.26 |
Node.js 강좌 자료] Express 모듈 (0) | 2017.11.26 |
Node.js 강좌 자료] 서버 실행 관리 모듈 (0) | 2017.11.26 |
Node.js 강좌 자료] jade(pug) 모듈 (0) | 2017.11.26 |