1. ホーム
  2. node.js

[解決済み】DeprecationWarning: スクリプトを別のサーバに移動すると、セキュリティとユーザビリティの問題でBuffer()が非推奨になる。

2022-04-17 05:18:02

質問

スクリプトを他のサーバに移動するとエラーが発生します。

<ブロッククオート

(node:15707) [DEP0005] DeprecationWarning: Buffer()はセキュリティとユーザビリティの問題から非推奨となりました。代わりに Buffer.alloc(), Buffer.allocUnsafe(), Buffer.from() メソッドを使用してください。

現在のバージョン

Ubuntu 16.04.4 LTS  
Node - v10.9.0  
NPM - 6.2.0  

旧バージョンです。

Ubuntu 14.04.3 LTS
NPM - 3.10.10
Node - v6.10.3



exports.basicAuthentication = function (req, res, next) {
    console.log("basicAuthentication");
    if (!req.headers.authorization) {
        return res.status(401).send({
            message: "Unauthorised access"
        });
    }
    var auth = req.headers.authorization;
    var baseAuth = auth.replace("Basic", "");
    baseAuth = baseAuth.trim();
    var userPasswordString = new Buffer(baseAuth, 'base64').toString('ascii');
    var credentials = userPasswordString.split(':');

    var username = credentials[0] !== undefined ? credentials[0] : '';
    var password = credentials[1] !== undefined ? credentials[1] : '';
    var userQuery = {mobilenumber: username, otp: password};
    console.log(userQuery);
    User.findOne(userQuery).exec(function (err, userinfo) {
        if (err || !userinfo) {
             return res.status(401).send({
                message: "Unauthorised access"
             });
        } else {
            req.user = userinfo;
            next();
        }
    });

 }

解決方法は?

new Buffer(number)            // Old
Buffer.alloc(number)          // New


new Buffer(string)            // Old
Buffer.from(string)           // New


new Buffer(string, encoding)  // Old
Buffer.from(string, encoding) // New


new Buffer(...arguments)      // Old
Buffer.from(...arguments)     // New


備考 Buffer.alloc() は、現在の Node.js バージョンでは new Buffer(size).fill(0) よりも高速であること。