250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 | 29 | 30 |
Tags
- sequelize
- Find
- til
- Node.js
- wil
- RDS
- mongodb
- mongoose
- flutter
- certbot
- clipBehavior
- TailwindCSS
- css
- async
- MYSQL
- nginx
- moment
- jsonwebtoken
- TypeScript
- Express
- await
- EC2
- JavaScript
- https
- single quote
- Nodejs
- findByIdAndDelete
- atlas
- AWS
- double quote
Link
Archives
기억 휘발 방지소
[Node.js] Express 본문
728x90
반응형
Express
Express 홈페이지에 가보면 Express를 '웹 및 모바일 애플리케이션을 위한 일련의 강력한 기능을 제공하는 간결하고 유연한 Node.js 웹 애플리케이션 프레임워크이다' 라고 소개하고 있다.
Node.js를 이용해 서버를 만들고 싶어하는 개발자들을 위해 서버를 쉽게 만들 수 있도록 해주는 프레임워크 정도로 보면 될 것 같다.
설치
아래 명령어로 설치할 수 있다.
npm install express
사용
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => {
res.send('Hello Express');
});
app.listen(port, () => {
console.log(`${port}번 포트에서 대기중`);
});
위의 코드대로 실행을 하고 localhost:3000으로 접속을 하면 아래처럼 Hello Express를 잘 출력하는 것을 볼 수 있다!
728x90
반응형
'Web > Node.js' 카테고리의 다른 글
[Node.js] Middleware (0) | 2021.09.14 |
---|---|
[Node.js] express.static (0) | 2021.09.09 |
[Node.js] path, __dirname, __filename (0) | 2021.09.09 |
[Node.js] fs 모듈 (0) | 2021.09.06 |
[Node.js] morgan (0) | 2021.09.06 |