-
[TIL] 2023.12.16 | 웹 풀사이클 데브코스JavaScript 2023. 12. 17. 22:03반응형
✔️Facts
- 프로그래머스 웹 풀사이클 데브코스 수업
- tistory 글 작성
💡Findings
- 최근에는 parse() 함수를 사용하지 않고, URL 클래스를 사용하는 것이 권장된다. URL 클래스는 WHATWG URL 표준을 따르며, URL을 해석하고 조작하는 데 더 현대적이고 강력한 방법을 제공한다.
- favicon.ico error 해결 방법
<작성글>
https://jungheeho.tistory.com/53
[Node.js] URL 파싱(parsing)
[복습] - Node.js의 http 모듈을 사용하여 기본적인 웹 서버를 만드는 예시 코드 const http = require('http'); // 서버 생성 const server = http.createServer((req, res) => { // 응답 헤더 설정 res.writeHead(200, {'Content-Type':
jungheeho.tistory.com
https://jungheeho.tistory.com/54
[Node.js] URL parsing | TypeError: handle[pathname] is not a function
⚠️ TypeError: handle[pathname] is not a function https://github.com/heeheehoho/DevCourse/tree/main/backend/URLWeberver TypeError: handle[pathname] is not a function at route (/Users/jungheeho/Desktop/programmers/DevCourse/backend/URLWeberver/router.js:
jungheeho.tistory.com
https://jungheeho.tistory.com/55
[Node.js] Url에 따라 프론트엔드에 다른 response 보내기 | new URL
[이전 게시물] https://jungheeho.tistory.com/54 [Node.js] URL parsing | TypeError: handle[pathname] is not a function ⚠️ TypeError: handle[pathname] is not a function https://github.com/heeheehoho/DevCourse/tree/main/backend/URLWeberver TypeError:
jungheeho.tistory.com
💭Feelings
- 😚😃
📣Affirmation
"Don't give up!"
반응형'JavaScript' 카테고리의 다른 글
[Node.js] JSON 직렬화와 Map 객체 (2) 2024.01.08 [Node.js]Express.js 기반 웹 서버 구축 연습 | REST API (0) 2023.12.25 [Node.js] Url에 따라 프론트엔드에 다른 response 보내기 | new URL (2) 2023.12.17 [Node.js] URL parsing | TypeError: handle[pathname] is not a function | favicon.ico에러 (0) 2023.12.17 [Node.js] URL 파싱(parsing) (2) 2023.12.17