Simple, secure[1] & standards compliant[2] web server for the most demanding[3] of applications. Read more...

Language grade: C/C++


### :bulb: Familiar face µWebSockets.js is a C++ implementation of the Http/WebSocket protocols for Node.js, easy to use from JavaScript. Think of it as a faster Express.js/Socket.IO alternative; it comes with both router and pub/sub support. Browse the [documentation](https://unetworking.github.io/uWebSockets.js/generated/) and see the [main repo](https://github.com/uNetworking/uWebSockets). There are tons of [examples](examples) but here's the gist of it all: ```javascript /* Non-SSL is simply App() */ require('uWebSockets.js').SSLApp({ /* There are tons of SSL options */ key_file_name: 'misc/key.pem', cert_file_name: 'misc/cert.pem', }).ws('/*', { /* For brevity we skip the other events */ message: (ws, message, isBinary) => { let ok = ws.send(message, isBinary); } }).any('/*', (res, req) => { /* Let's deny all Http */ res.end('Nothing to see here!'); }).listen(9001, (listenSocket) => { if (listenSocket) { console.log('Listening to port 9001'); } }); ``` ### :muscle: Unfair advantage Being written in native code directly targeting the Linux kernel makes it way faster than any JavaScript implementation. ![](misc/chart.png) * Install with `npm install uNetworking/uWebSockets.js#v18.2.0` or any such release. No compiler needed. ### :briefcase: Commercially supported uNetworking AB is a Swedish consulting & contracting company dealing with anything related to µWebSockets; development, support and customer success. Don't hesitate sending a mail if you're building something large, in need of advice or having other business inquiries in mind. We'll figure out what's best for both parties and make sure you're not stepping into one of the many common pitfalls. Special thanks to BitMEX, Bitfinex, Google, Coinbase, Bitwyre and deepstreamHub for allowing the project itself to thrive on GitHub since 2016 - this project would not be possible without these beautiful companies. * µWebSockets.js is the Node.js binding to µWebSockets. Read more over at [µWebSockets](https://github.com/uNetworking/uWebSockets).