Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

http.request DEP0195

This recipe provides a guide for migrating from the deprecated http.request and its synchronous and promise-based counterparts to the new http.request method in Node.js.

See DEP0195.

Examples

  // import { IncomingMessage, ClientRequest } from "node:http";
  // const http = require("node:http");

- const message = http.OutgoingMessage();
+ const message = new http.OutgoingMessage();
- const response = http.ServerResponse(socket);
+ const response = new http.ServerResponse(socket);

- const incoming = IncomingMessage(socket);
+ const incoming = new IncomingMessage(socket);
- const request = ClientRequest(options);
+ const request = new ClientRequest(options);