Websocket for Nim
Go to file
Arijit Das fa37c87dd5 Parse Frame and handle different message type. 2020-12-15 18:39:50 +05:30
src Parse Frame and handle different message type. 2020-12-15 18:39:50 +05:30
test Parse Frame and handle different message type. 2020-12-15 18:39:50 +05:30
.editorconfig Implement web socket handshake 2020-12-01 18:13:59 +05:30
Readme.md Support Websocket handshake and update the readme. 2020-12-08 18:19:22 +05:30
lint.nims Implement web socket handshake 2020-12-01 18:13:59 +05:30
ws.nimble Implement a HTTP server using httputils package 2020-12-08 01:17:45 +05:30

Readme.md

Websocket for Nim

We're working towards an implementation of the Websocket protocol for Nim. This is very much a work in progress, and not yet in a usable state.

Building and testing

Install dependencies:

nimble install -d

Starting HTTP server:

nim c -r test/server.nim

Testing Server Response:

curl --location --request GET 'http://localhost:8888'

Testing Websocket Handshake:

curl --include \
   --no-buffer \
   --header "Connection: Upgrade" \
   --header "Upgrade: websocket" \
   --header "Host: example.com:80" \
   --header "Origin: http://example.com:80" \
   --header "Sec-WebSocket-Key: SGVsbG8sIHdvcmxkIQ==" \
   --header "Sec-WebSocket-Version: 13" \
   http://localhost:8888/ws