summaryrefslogblamecommitdiffhomepage
path: root/src/nodejs/unit-http/http.js
blob: 3a25fa2fe365eafd1529c6c7477e7ad388409ae8 (plain) (tree)






















                                                

/*
 * Copyright (C) NGINX, Inc.
 */

'use strict';

const server = require('unit-http/http_server');

const { Server } = server;

function createServer (requestHandler) {
    return new Server(requestHandler);
}


module.exports = {
    Server,
    STATUS_CODES: server.STATUS_CODES,
    createServer,
    IncomingMessage: server.ServerRequest,
    ServerResponse: server.ServerResponse
};