Skip to content

Instantly share code, notes, and snippets.

@yakovenkodenis
Last active November 14, 2022 17:40
Show Gist options
  • Save yakovenkodenis/df357a13442bf6d5203fc582f7f18fde to your computer and use it in GitHub Desktop.
Save yakovenkodenis/df357a13442bf6d5203fc582f7f18fde to your computer and use it in GitHub Desktop.
_init() {
if (this._server) throw new Error('Server already initialized');
this._server = http.createServer((req, res) => {
const UPGRADE_REQUIRED = 426;
const body = http.STATUS_CODES[UPGRADE_REQUIRED];
res.writeHead(UPGRADE_REQUIRED, {
'Content-Type': 'text/plain',
'Upgrade': 'WebSocket',
});
res.end(body);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment