zlib.gzip()

zlib.gzip(buf[, options], callback)

net_socket.pause()

socket.pause() Pauses the reading of data. That is, 'data' events will not be emitted. Useful to throttle back an upload.

fs.utimesSync()

fs.utimesSync(path, atime, mtime) Synchronous version of fs.utimes(). Returns undefined.

fs.rename()

fs.rename(oldPath, newPath, callback) Asynchronous rename(2). No arguments other than a possible exception are given to the completion callback.

disconnect event (Worker)

Event: 'disconnect' Similar to the cluster.on('disconnect') event, but specific to this worker. cluster.fork().on('disconnect', () => { // Worker has disconnected });

response.removeHeader()

response.removeHeader(name) Removes a header that's queued for implicit sending. Example: response.removeHeader('Content-Encoding');

writable.write()

Stability: 2 - Stable A stream is an abstract interface implemented by various objects in Node.js. For example a request to an HTTP server is a stream, as is process.stdout. Streams are readable, writable, or both. All streams are instances of EventEmitter. You can load the Stream base classes by doing require('stream'). There are base classes provided for Readable streams, Writable streams, Duplex streams, and Transform streams. This document is split up into 3 sections: The first section e

dgram_socket.setBroadcast()

socket.setBroadcast(flag) flag <Boolean> Sets or clears the SO_BROADCAST socket option. When set to true, UDP packets may be sent to a local interface's broadcast address.

net_socket.destroy()

socket.destroy() Ensures that no more I/O activity happens on this socket. Only necessary in case of errors (parse error or so).

net_socket.bytesWritten

socket.bytesWritten The amount of bytes sent.