공부/Node.js
[Node.js] Buffer 관련 Warning
KindLoad
2020. 7. 15. 16:06
※Visual Studio Code로 Node.js 공부중입니다.
Do it! 책을 읽으면서 따라 쓰다가 발견하게 된 오류입니다.
(node:4852) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
라는 오류가 나와서 이게 뭔가 궁금해서 한 번 찾아봤습니다.
일단 저기 말로는 Buffer.alloc(), Buffer.allocUnsafe(), Buffer.from()로 대체를 하라고 하는 것 같은데...
https://stackoverflow.com/questions/52165333/deprecationwarning-buffer-is-deprecated-due-to-security-and-usability-issues --> stackoverflow 주소
결론 : Buffer new(10) 말고 Buffer.alloc(10)을 사용해라