WEB2 - Node.js
querystring deprecated
vs code 에서 qs밑에 밑줄이 불편하신 분들은 영상속 코드의 request.on('end', function() 아래 3줄을 다음과 같이 수정해주시면 됩니다.
const post = new URLSearchParams(body);
const title = post.get("title");
const description = post.get("description");
querystring API 대신 node 기본 URLSearchParams API 사용이 권장됩니다.
공식문서를 읽어보시면 도움 되실겁니다.