-
20201228(월)-- 2021. 1. 5. 04:40반응형
HTTP (공통)
- HTTP 요청/응답을 브라우저를 통해 확인할 수 있고, 해당 내용을 읽을 수 있다.>네트워크탭에서 확인 name 누르면 나옴
- HTTP 다양한 요청 방식과, 응답 코드에 대해 이해할 수 있다.> 요청할때는 req need method and response give code 100~500
node.js modules의 사용
- node.js의 내장 http 모듈을 사용할 수 있다. (mini node server)
- > builtin module can use of require("modulename');
- node.js의 내장 fs 모듈을 사용할 수 있다. (optional) (chatterbox server)
- >and youcan read how to use module in node hompage but toooo hard
- http 모듈 사용시에 서버에 CORS 설정을 할 수 있다. (mini node server)
- >when cors setting cors come from Option method , i can distinguish request and i need to response.writehead and response.end() and in writehead we need to write statuscode and other thing like defaultcors setting(
- CommonJS를 이용한 모듈 내보내기/불러오기를 할 수 있다. (chatterbox server)
- >module.export/ exports
라우팅과 API
- 라우팅(조건에 따른 분기)을 이해하고, 이를 서버 코드에서 구현할 수 있다. (mini node server)
- >we can distinguish of request object that include method and url when we used in request . request is factor in createserver function first factor and we can use server.on function but i don't know well
- we must know one request need one response we have to response.end()zzz
- 클라이언트가 사용할 수 있도록, 서버 API 문서를 직접 작성할 수 있다. (chatterbox server)
Express 라이브러리 맛보기 (refactor express)
- express 라이브러리가 어떤 작업을 단순하게 만드는지 이해할 수 있다.
- 미들웨어의 개념을 이해할 수 있다.
서버 개발과 디버깅 (chatterbox server)
- 서버 개발을 돕는 다양한 툴들을 익힐 수 있다.
- nodemon의 사용
- >npm install nodemon --save-dev or global or external factor
- inspect 옵션을 이용한 디버깅
'--' 카테고리의 다른 글
20200105 (0) 2021.01.06 react (0) 2021.01.06 react (0) 2021.01.05 buffer(숙제) (0) 2020.12.28 궁금했던거 20201225(금) (0) 2020.12.25