fs.unlink()

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

fs.stat()

fs.stat(path, callback) Asynchronous stat(2). The callback gets two arguments (err, stats) where stats is a fs.Stats object. See the fs.Stats section for more information.

diffieHellman.setPrivateKey()

diffieHellman.setPrivateKey(private_key[, encoding]) Sets the Diffie-Hellman private key. If the encoding argument is provided and is either 'binary', 'hex', or 'base64', private_key is expected to be a string. If no encoding is provided, private_key is expected to be a Buffer.

response.writeContinue()

response.writeContinue() Sends a HTTP/1.1 100 Continue message to the client, indicating that the request body should be sent. See the 'checkContinue' event on Server.

response.getHeader()

response.getHeader(name) Reads out a header that's already been queued but not sent to the client. Note that the name is case insensitive. This can only be called before headers get implicitly flushed. Example: var contentType = response.getHeader('content-type');

http.IncomingMessage

Class: http.IncomingMessage An IncomingMessage object is created by http.Server or http.ClientRequest and passed as the first argument to the 'request' and 'response' event respectively. It may be used to access response status, headers and data. It implements the Readable Stream interface, as well as the following additional events, methods, and properties.

stream.Transform

Class: stream.Transform Transform streams are Duplex streams where the output is in some way computed from the input. They implement both the Readable and Writable interfaces. Examples of Transform streams include: zlib streams crypto streams

util.isBoolean()

util.isBoolean(object) Stability: 0 - Deprecated Returns true if the given "object" is a Boolean. Otherwise, returns false. const util = require('util'); util.isBoolean(1) // false util.isBoolean(0) // false util.isBoolean(false) // true

fs.fchownSync()

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

.close()

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