# websocket **Repository Path**: atavistic/websocket ## Basic Information - **Project Name**: websocket - **Description**: WebSocket library for cpp - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-05-11 - **Last Updated**: 2024-01-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WebSocket websocket library for c++. ## Quick Start This assumes you are running Ubuntu 16.04 Clone: ```bash $ git clone https://github.com/hanoi404/websocket && cd websocket ``` ## CMake Config and build: ```bash $ mkdir build && cd build $ cmake .. -DWEBSOCKET_BUILD_EXAMPLES=ON $ make ``` Output programs in `examples` directory: ```bash examples/websocket_server examples/websocket_client ```