Few lines describing your project.
This project implements a WebSocket server as an intermediary bridge between clients and a REST API. The WebSocket server is implemented as a static library in C++ and integrated into Go, providing a seamless layer for real-time communication. The primary purpose of the server is to accept WebSocket connections from clients and forward requests to the specified REST API for processing. This setup enables efficient interaction between clients and server-side logic.
- WebSocket as an intermediary layer : Acts as a bridge between WebSocket clients and REST API.
- Static library implementation : The WebSocket server is implemented as a static C++ library, ensuring high performance and independence from external dependencies.
- Integration with Go : Go is used to manage the WebSocket server, simplifying development, configuration, and execution.
- YAML-based configuration : Server settings (host, port, REST API parameters) are defined in the config.yaml file.
To work with this project, you will need:
- Go (version 1.20 or higher)
- A C++ compiler with support for the C++11 standard
- Libraries: Boost, OpenSSL
- The yaml.v3 utility for configuration handling
- main.go : The main application file that manages starting, stopping, and deleting the WebSocket server.
- config.yaml : Configuration file containing host, port, and REST API settings.
- go.mod , go.sum : Files for managing Go dependencies.
- Static WebSocket library : Implementation of the WebSocket server in C++ (compiled as a static library).
git clone https://github.com/warjohn/WebSocket.git
cd /in/directory
mkdir /in/directory/build
cd build
camke ..
make
cp /in/directory/build/libsocket.a /path/to/your/GO_folder
go mod download
host: "localhost"
port: 8080
rest_api_host: "api.example.com"
rest_api_port: 8000
./main
- A client connects to the WebSocket server:
ws://localhost:8080
- The WebSocket server forwards client requests to the REST API:
http://api.example.com:8000
- Responses from the REST API are sent back to the client via WebSocket.
- @warjohn - Idea & Initial work
If you have any questions or want to suggest improvements, create an issue in the repository or contact the author directly.