TIL) 210531 Express.js 서버만들기
Framework: express.js
Middleware: cors
1. 서버를 실행시켰을 때의 에러
Error: listen EACCES: permission denied 0.0.0.0:81
이유: 1024번 아래의 포트를 사용하려면 루트 권한이 필요하다
해결: 서버 포트번호를 81 => 5000 으로 변경
2. Request query에 접근하기
url example: https://sanghunkim.com/project?stack=aws&type=personal
app.get('/project', async function(req, res) {
let stack = req.query.stack; // stack === 'aws'
let type = req.query.type; // type === 'personal'
}
3. /:id 전달값 받아오기
app.get 의 라우터 부분이 /:id 일 경우
request.params.id로 받아올 수 있다.
Author And Source
이 문제에 관하여(TIL) 210531 Express.js 서버만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hun1224/TIL-210503-Express.js-서버만들기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)