Skip to content

Instantly share code, notes, and snippets.

View KavandF's full-sized avatar

KavandFarahmand KavandF

View GitHub Profile
@ErickWendel
ErickWendel / websocket-client.js
Last active September 26, 2024 11:59
Pure WebSocket Node.js Server using Native HTTP Module
// make a request
const options = {
port: 1337,
host: 'localhost',
headers: {
'Connection': 'Upgrade',
'Upgrade': 'websocket'
}
};
const protocol = 'http'