tlsSocket.setMaxSendFragment()

tlsSocket.setMaxSendFragment(size) Set maximum TLS fragment size (default and maximum value is: 16384, minimum is: 512). Returns true on success, false otherwise. Smaller fragment sizes decrease the buffering latency on the client: larger fragments are buffered by the TLS layer until the entire fragment is received and its integrity is verified; large fragments can span multiple roundtrips and their processing can be delayed due to packet loss or reordering. However, smaller fragments add extr

stringdecoder.write()

decoder.write(buffer) Returns a decoded string.

punycode.toASCII()

punycode.toASCII(domain) Converts a Unicode string representing a domain name to Punycode. Only the non-ASCII parts of the domain name will be converted, i.e. it doesn't matter if you call it with a domain that's already in ASCII. // encode domain names punycode.toASCII('mañana.com'); // 'xn--maana-pta.com' punycode.toASCII('☃-⌘.com'); // 'xn----dqo34k.com'

fs.unlinkSync()

fs.unlinkSync(path) Synchronous unlink(2). Returns undefined.

child_process.execSync()

child_process.execSync(command[, options]) command <String> The command to run options <Object> cwd <String> Current working directory of the child process input <String> | <Buffer> The value which will be passed as stdin to the spawned processsupplying this value will override stdio[0] stdio <Array> Child's stdio configuration. (Default: 'pipe') stderr by default will be output to the parent process' stderr unless stdio is specified env <Object&g

zlib.createDeflate()

zlib.createDeflate(options) Returns a new Deflate object with an options.

punycode.toUnicode()

punycode.toUnicode(domain) Converts a Punycode string representing a domain name to Unicode. Only the Punycoded parts of the domain name will be converted, i.e. it doesn't matter if you call it on a string that has already been converted to Unicode. // decode domain names punycode.toUnicode('xn--maana-pta.com'); // 'mañana.com' punycode.toUnicode('xn----dqo34k.com'); // '☃-⌘.com'

http_server.maxHeadersCount

server.maxHeadersCount Limits maximum incoming headers count, equal to 1000 by default. If set to 0 - no limit will be applied.

fs.writeFileSync()

fs.writeFileSync(file, data[, options]) The synchronous version of fs.writeFile(). Returns undefined.

stream.Writable

Class: stream.Writable The Writable stream interface is an abstraction for a destination that you are writing data to. Examples of writable streams include: HTTP requests, on the client HTTP responses, on the server fs write streams zlib streams crypto streams TCP sockets child process stdin process.stdout, process.stderr Event: 'drain' If a stream.write(chunk) call returns false, then the 'drain' event will indicate when it is appropriate to begin writing more data to the stream. // Wri