
*µWS ("[micro](https://en.wikipedia.org/wiki/Micro-)WS") is simple and efficient messaging for the modern web.*
• [Fancy pants details & user manual](http://)
#### Express yourself briefly.
```c++
uWS::App a; // or uWS::SSLApp(options) for SSL
a.onGet("/", [](auto *s, auto *req, auto *args) {
s->writeStatus("200 OK")->writeHeader("Hello", "World")->end(buffer);
}).onGet("/largefile", [](auto *s, auto *req, auto *args) {
s->write([](int offset) {
return largeFile.substr(offset);
}, fileSize);
}).onPost("/upload/:filename", [](auto *s, auto *req, auto *args) {
s->read([std::ofstream fout = args[0]](int offset, auto chunk) {
fout << chunk;
});
}).onWebSocket