NodeJs의 프레임워크 중에서 Express 프레임워크를 사용해봅시다.
1. Workspace 생성
2. Express framework 설치
cmd 혹은 powershell을 실행 후 workspace 폴더로 이동합니다.
npm install express 를 실행합니다.
수행 후 다음과 같은 메시지와 node_modules폴더, package-lock.json파일이 생성됨을 확인 할 수 있습니다.
3. hello-express.js작성
Express 프레임워크를 사용할 NodeJs코드를 작성합니다.
1 2 3 4 5 6 7 8 9 10 | var express = require('express'); var app = express(); app.get('/', function(req, res) { res.send('Hello World!'); }); app.listen(3000, function() { console.log('Example app listening on port 3000!'); }); | cs |
4. hello-express.js 실행
cmd 혹은 powershell로 node hello-express.js 를 실행합니다.
5. 결과 확인.
다음과 같은 결과를 확인합니다.
반응형
'Programming > JavaScript' 카테고리의 다른 글
NodeJs - MariaDB 연동하기 (3) | 2019.02.14 |
---|---|
NodeJs 시작하기 - 사용자 커스텀 모듈 사용하기 (0) | 2019.02.14 |
NodeJs 시작하기 - 샘플코드 실행해보기. (0) | 2019.02.14 |
NodeJS 시작하기 - NodeJs 설치 및 NPM 설치 (0) | 2019.02.14 |
[Javascript] CSS 의 width값을 int로 변환하기. (width to int) (0) | 2019.01.31 |