[Node.js] DeprecationWarning: Buffer() is deprecated due to security and usability issues... 에러
·
Programming/Node.js
서버의 로그을 살펴보던 도중 아래와 같은 에러 문구가 있는것을 발견했다. (node:15479) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. 해당 에러가 뜨는 이유와 더이상 뜨지 않게 코드를 리팩토링해보자. 환경 node.js: 16.x 원인 원인은 기존 코드에서 버퍼를 생성할때 아래와 같은 코드로 생성하고 있기 때문이였다. const testBuffer = new Buffer('test'); 해결 현재 사용하는 node.js 버전에서..