- `require("os").tmpDir` has been deprecated https://github.com/nodejs/node/pull/6739. - `punycode` module has been deprecated https://github.com/nodejs/node/pull/7941. - `Intl.v8BreakIterator` has been deprecated https://github.com/nodejs/node/pull/8908. - It's lacking the check for undocumented properties: - properties of `require("readline")` https://github.com/nodejs/node/pull/6423 - `.codePointAt` - `.getStringWidth` - `.isFullWidthCodePoint` - `.stripVTControlCharacters` - `process.EventEmitter` https://github.com/nodejs/node/pull/6862. - properties of `require("module")` https://github.com/nodejs/node/pull/8575 - `.requireRepl` - `.Module.requireRepl` - Notes of known limitations: - `require("repl").REPLServer.prototype.convertToContext` https://github.com/nodejs/node/pull/7829
require("os").tmpDirhas been deprecated os: deprecatetmpDir()in favour oftmpdir()nodejs/node#6739.punycodemodule has been deprecated doc, punycode: soft-deprecation of the punycode module nodejs/node#7941.Intl.v8BreakIteratorhas been deprecated intl: add deprecation warning for v8BreakIterator nodejs/node#8908.require("readline")readline: remove deprecated methods nodejs/node#6423.codePointAt.getStringWidth.isFullWidthCodePoint.stripVTControlCharactersprocess.EventEmitterprocess: remove deprecated process.EventEmitter nodejs/node#6862.require("module")module: Remove deprecated/unused function requireRepl. Part of #4642 nodejs/node#8575.requireRepl.Module.requireReplrequire("repl").REPLServer.prototype.convertToContextrepl: deprecate unused function convertToContext nodejs/node#7829