I am running an Express API with Node.js using mssql@3.3.0
.
An older version of mssql
is being used to align with other compatibility issues that we're having.
However, when trying to use promises to chain requests together I am getting the following error:
DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
How do I disable this warning and run the code in "unsafe" mode using IISNode / Express?