mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 22:32:06 +00:00
Co-authored-by: cirospaciari <6379399+cirospaciari@users.noreply.github.com> Co-authored-by: 190n <ben@bun.sh>
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
const { validateInteger } = require("internal/validators");
|
|
const { Agent, globalAgent, NODE_HTTP_WARNING } = require("node:_http_agent");
|
|
const { ClientRequest } = require("node:_http_client");
|
|
const { validateHeaderName, validateHeaderValue } = require("node:_http_common");
|
|
const { IncomingMessage } = require("node:_http_incoming");
|
|
const { OutgoingMessage } = require("node:_http_outgoing");
|
|
const { Server, ServerResponse } = require("node:_http_server");
|
|
|
|
const { METHODS, STATUS_CODES, setMaxHTTPHeaderSize, getMaxHTTPHeaderSize } = require("internal/http");
|
|
|
|
const { WebSocket, CloseEvent, MessageEvent } = globalThis;
|
|
|
|
function createServer(options, callback) {
|
|
return new Server(options, callback);
|
|
}
|
|
|
|
/**
|
|
* Makes an HTTP request.
|
|
* @param {string | URL} url
|
|
* @param {HTTPRequestOptions} [options]
|
|
* @param {Function} [cb]
|
|
* @returns {ClientRequest}
|
|
*/
|
|
function request(url, options, cb) {
|
|
return new ClientRequest(url, options, cb);
|
|
}
|
|
|
|
/**
|
|
* Makes a `GET` HTTP request.
|
|
* @param {string | URL} url
|
|
* @param {HTTPRequestOptions} [options]
|
|
* @param {Function} [cb]
|
|
* @returns {ClientRequest}
|
|
*/
|
|
function get(url, options, cb) {
|
|
const req = request(url, options, cb);
|
|
req.end();
|
|
return req;
|
|
}
|
|
|
|
const http_exports = {
|
|
Agent,
|
|
Server,
|
|
METHODS,
|
|
STATUS_CODES,
|
|
createServer,
|
|
ServerResponse,
|
|
IncomingMessage,
|
|
request,
|
|
get,
|
|
get maxHeaderSize() {
|
|
return getMaxHTTPHeaderSize();
|
|
},
|
|
set maxHeaderSize(value) {
|
|
setMaxHTTPHeaderSize(value);
|
|
},
|
|
validateHeaderName,
|
|
validateHeaderValue,
|
|
setMaxIdleHTTPParsers(max) {
|
|
validateInteger(max, "max", 1);
|
|
$debug(`${NODE_HTTP_WARNING}\n`, "setMaxIdleHTTPParsers() is a no-op");
|
|
},
|
|
globalAgent,
|
|
ClientRequest,
|
|
OutgoingMessage,
|
|
WebSocket,
|
|
CloseEvent,
|
|
MessageEvent,
|
|
};
|
|
|
|
export default http_exports;
|