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(3000function() {
  console.log('Example app listening on port 3000!');
});
cs


4. hello-express.js 실행


cmd 혹은 powershell로 node hello-express.js 를 실행합니다.



5. 결과 확인.


다음과 같은 결과를 확인합니다.



반응형

+ Recent posts