fs.fchownSync()

fs.fchownSync(fd, uid, gid) Synchronous fchown(2). Returns undefined.

.close()

server.close([callback]) See http.close() for details.

tlsSocket.remoteFamily

tlsSocket.remoteFamily The string representation of the remote IP family. 'IPv4' or 'IPv6'.

.listen()

server.listen(handle[, callback])

readable.isPaused()

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

fs.openSync()

fs.openSync(path, flags[, mode]) Synchronous version of fs.open(). Returns an integer representing the file descriptor.

message.setTimeout()

message.setTimeout(msecs, callback) msecs <Number> callback <Function> Calls message.connection.setTimeout(msecs, callback). Returns message.

pipe event (stream.Writable)

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

cli

Node.js comes with a wide variety of CLI options. These options expose built-in debugging, multiple ways to execute scripts, and other helpful runtime options. To view this documentation as a manual page in your terminal, run man node. Synopsis node [options] [v8 options] [script.js | -e "script"] [arguments] node debug [script.js | -e "script" | <host>:<port>] … node --v8-options Execute without arguments to start the REPL. For more info about node debug, please see the debug

os.totalmem()

os.totalmem() Returns the total amount of system memory in bytes.