querystring.escape

querystring.escape The escape function used by querystring.stringify, provided so that it could be overridden if necessary.

response.statusCode

response.statusCode When using implicit headers (not calling response.writeHead() explicitly), this property controls the status code that will be sent to the client when the headers get flushed. Example: response.statusCode = 404; After response header was sent to the client, this property indicates the status code which was sent out.

tls_server.connections

server.connections The number of concurrent connections on the server.

readable event (stream.Readable)

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

buffer.writeInt16BE()

buf.writeInt16BE(value, offset[, noAssert])

console.info()

console.info([data][, ...]) The console.info() function is an alias for console.log().

fs.fstatSync()

fs.fstatSync(fd) Synchronous fstat(2). Returns an instance of fs.Stats.

util.print()

util.print([...]) Stability: 0 - Deprecated: Use console.log() instead. Deprecated predecessor of console.log.

zlib.createDeflateRaw()

zlib.createDeflateRaw(options) Returns a new DeflateRaw object with an options.

fs.futimesSync()

fs.futimesSync(fd, atime, mtime) Synchronous version of fs.futimes(). Returns undefined.