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

https://github.com/vlasdislav/server


https://github.com/vlasdislav/server

cpp websockets

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# server

Чат-сервер

```js
ws = new WebSocket("ws://127.0.0.1:9001/");
ws.onmessage = ({data}) => console.log("FROM SERVER", data);
```