Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tategakibunko/lwt-websocket

ocaml lwt based websocket library
https://github.com/tategakibunko/lwt-websocket

lwt ocaml websockets

Last synced: about 2 months ago
JSON representation

ocaml lwt based websocket library

Awesome Lists containing this project

README

        

# lwt-websocket

1. provide server to client channel of websocket.

2. provide client to server channel of websocket.

## server to client channel

Lwt_websocket.Channel.accept sock_listen >>= fun (addr, channel) ->
channel#write_text_frame "hello, i am server."

## client to server channel

Lwt_websocket.Channel.connect "127.0.0.1" 8080 ~sec_socket_key:"aaa" >>= fun channel ->
channel#write_text_frame "hello, i am client."