
*µWS ("[micro](https://en.wikipedia.org/wiki/Micro-)WS") is simple and efficient messaging for the modern web.*
• [Fancy pants details & user manual](READMORE.md)
#### Express yourself briefly.
```c++
uWS::App app; // or uWS::SSLApp(options) for SSL
app.onGet("/", [](auto *res, auto *req, auto *args) {
/* Respond with the web app on default route */
res->writeStatus("200 OK")
->writeHeader("Content-Type", "text/html; charset=utf-8")
->end(indexHtmlBuffer);
}).onWebSocket