あまりやらない方がいいとは思う
けど,理由があって,deprecation warning を無視したかった
- 短期的なもの
- 自分でコントロールしていないものの内部
- fork して何かする程がんばる何かではない
$ node -e 'new Buffer("")'
(node:59511) [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)
$ node --no-deprecation -e 'new Buffer("")'
$ NODE_OPTIONS=--no-deprecation node -e 'new Buffer("")'
Refs