Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gateway | 125 | 1 | 2 | 5 years ago | 140 | June 10, 2016 | 43 | apache-2.0 | Java | |
Kaazing Gateway | ||||||||||
Cppcon2018 | 88 | a year ago | 4 | bsl-1.0 | C++ | |||||
CppCon 2018 Presentation materials | ||||||||||
Caasa | 52 | 3 days ago | mit | Svelte | ||||||
Container as a Service admin | ||||||||||
Mmanager | 6 | 4 months ago | Python | |||||||
a web manager for supervisor process and docker container | ||||||||||
Noco Serverless Chat | 5 | 4 years ago | mit | Python | ||||||
Mosquitto | 4 | 3 years ago | mit | Dockerfile | ||||||
Docker container for MQTT Server Mosquitto. Open ports for Websockets and native MQTT connections. | ||||||||||
Infusion Nexus | 3 | 2 years ago | 1 | other | JavaScript | |||||
The Infusion Nexus | ||||||||||
Ws To Wss Proxy | 3 | 3 months ago | apache-2.0 | Shell | ||||||
Acts as a bridge between WebSocket clients that don't support TLS and WebSocket servers that require TLS. | ||||||||||
Php Websocket Server Docker | 3 | 7 years ago | mit | PHP | ||||||
Docker container for the gomoob/php-websocker-server | ||||||||||
Sente Example | 3 | 7 years ago | 2 | Clojure | ||||||
Sente's example project, modified to run behind nginx in multi-container docker on aws elastic beanstalk |
This repository contains the presentation file and compiling source code for the CppCon2018 talk.
Do you want to make a lot of money? You'll see some examples of free browser and server based WebSocket programs which have earned their respective individual authors tens of millions of dollars in no time at all. Perhaps after seeing this talk in person, you'll write the next massively successful WebSocket app!
The WebSocket protocol powers the interactive web by enabling two-way messaging between the browser and the web server. The Boost.Beast library implements this protocol on top of the industry standard Boost.Asio library which models the Networking Technical Specification proposed for the ISO C++ Standard.
This presentation introduces Networking TS concepts and algorithms, how to read their requirements, and how to use them in your programs. We will build from scratch a multi-user chat server in C++11 using Beast, and the corresponding browser-based chat client in HTML and JavaScript. No prior knowledge or understanding of Beast or Asio is required, the talk is suited for everyone.
To run this example in a Docker container, simply enter the following commands:
docker build -t cppcon2018-example .
docker run -d -p 8080:8080 cppcon2018-example
After that, you may observe the example at localhost:8080
.