rex-server
Version:
Rex Server is a Node.js-based reverse proxy server available as an npm package. It allows you to handle HTTP and HTTPS traffic, route requests to upstream servers, and manage worker processes efficiently. With its CLI interface, Rex makes it easy to confi
18 lines (17 loc) • 637 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IPCINFOMessgeName = void 0;
/**
* Enum representing possible information message types exchanged via IPC.
*
* This enum defines two types of informational messages that can be sent between processes:
* - `RESTART`: Indicates a process restart request.
* - `READY`: Indicates that a process is ready.
*
* @enum {string}
*/
var IPCINFOMessgeName;
(function (IPCINFOMessgeName) {
IPCINFOMessgeName["RESTART"] = "RESTART";
IPCINFOMessgeName["READY"] = "READY";
})(IPCINFOMessgeName || (exports.IPCINFOMessgeName = IPCINFOMessgeName = {}));