interface.prompt()

rl.prompt([preserveCursor]) Readies readline for input from the user, putting the current setPrompt options on a new line, giving the user a new spot to write. Set preserveCursor to true to prevent the cursor placement being reset to 0. This will also resume the input stream used with createInterface if it has been paused. If output is set to null or undefined when calling createInterface, the prompt is not written.

crypto.publicDecrypt()

crypto.publicDecrypt(public_key, buffer) Decrypts buffer with public_key. public_key can be an object or a string. If public_key is a string, it is treated as the key with no passphrase and will use RSA_PKCS1_PADDING. If public_key is an object, it is interpreted as a hash object with the keys: key : {String} - PEM encoded public key passphrase : {String} - Optional passphrase for the private key padding : An optional padding value, one of the following:constants.RSA_NO_PADDING constants.R

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.