jeremydaly / lambda-warmer

A module to optimize AWS Lambda function cold starts
MIT License
525 stars 55 forks source link

new Buffer is deprecated in nodejs 10.x #8

Closed aaliakseyenka closed 5 years ago

aaliakseyenka commented 5 years ago

when running on runtime 10.x deprecation error is logged: ERROR (node:7) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. can you please update new Buffer => Buffer.from

aaliakseyenka commented 5 years ago

I've addd PR https://github.com/jeremydaly/lambda-warmer/pull/9

jeremydaly commented 5 years ago

Thanks. This has been merged in the latest release.