lambda-multipart-parser
lambda-multipart-parser copied to clipboard
DeprecationWarning: Buffer() (Use Buffer.from instead?)
Hello and thank you for this minimal and smart repo!
Anyway, I am given warnings about using Buffer instead of Buffer.from with my Node 18 Lambda application.
Full error:
ERROR (node:8) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Im guessing it could have to do with busboy or something since your lib doesnt even include "Buffer" at all (from what I can see).
A fix to this would be appreciated 👍
I encountered the same issue... have published a revised version here using the PR opened by jrose-stac. Take no credit for the changes, simply published a new package as I needed it for a project. Solved the issue for me, hope it helps.
Same warning...
ERROR (node:8) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `node --trace-deprecation ...` to show where the warning was created)