Skip to content

Instantly share code, notes, and snippets.

View salihdhaifullah's full-sized avatar
🎯
Focusing

Salih Dhaifullah salihdhaifullah

🎯
Focusing
View GitHub Profile
@ErickWendel
ErickWendel / websocket-client.js
Last active April 4, 2024 04:42
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'