express.js
는 node.js를 빠르고 쉽게 이용할 수 있게 해주는 프레임워크 입니다.
npm init
npm install express
설치 후 package.json
파일에
"dependencies": {
"express": "^4.17.1"
},
이렇게 express가 추가되면 설치가 잘 완료된 것입니당
"scripts": {
"start": "node index.js"
...
}
const express = require('express') //express를 설치했기 때문에 가져올 수 있다.
const app = express()
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(5000)
자세한 설명은 express API 사이트
터미널 창에 npm run start
를 입력하고 서버를 킵니다.
주소창에 http://localhost:5000/ 입력을 하면 화면에 hello world
가 출력된 것을 볼 수 있습니다!