Node. js에서 웹 서버를 구축하기 위한 라이브러리인 Express에 대해 정리해보려 한다.
Express란?
Express는 Node.js 웹 어플리케이션 프레임워크 중 하나로, Node.js에서 웹 서버를 구축하기 위한 라이브러리이다.
Express는 매우 인기있는 프레임워크 중 하나이며, Node.js 개발자들 사이에서 널리 사용된다. 또한, Express를 사용하면 다양한 라이브러리와 프레임워크를 쉽게 통합할 수 있으며, Node.js 애플리케이션의 확장성과 유지보수성을 높일 수 있다.
Node.js에서 Express 설치하기
터미널을 열어 Node.js 설치 확인
node -v
npm 초기화 하기
npm init
package.json이 추가되는 것을 확인 할 수 있다.express 설치하기
npm install express --save
설치가 완료 되었다면, node_modules와 package-lock.json 파일이 생성된 것을 확인 할 수 있다.
Node.js에서 Express를 사용하여 웹 서버 만들기
1
2
3
4
5
6
7
8
9
10
const express = require("express");
const app = express();
app.get('/',function(req,res){
res.send("Hello, Express");
})
app.listen(3000,function(){
console.log('Connected 3000port!');
});
터미널에서 node 'js파일명'
을 통해 코드를 실행시켜 보자
Express를 통해 웹 서버가 잘 작동하는 것을 볼 수 있다.