uWebSockets.js/README.md

63 lines
3.3 KiB
Markdown
Raw Normal View History

2019-01-15 13:33:43 +00:00
<div align="center">
2020-06-07 08:50:19 +00:00
<img src="https://raw.githubusercontent.com/uNetworking/uWebSockets/master/misc/logo.svg" height="180" /><br>
<i>Simple, secure</i><sup><a href="https://github.com/uNetworking/uWebSockets/tree/master/fuzzing#fuzz-testing-of-various-parsers-and-mocked-examples">[1]</a></sup><i> & standards compliant</i><sup><a href="https://unetworking.github.io/uWebSockets.js/report.pdf">[2]</a></sup><i> web server for the most demanding</i><sup><a href="https://github.com/uNetworking/uWebSockets/tree/master/benchmarks#benchmark-driven-development">[3]</a></sup><i> of applications.</i> <a href="https://github.com/uNetworking/uWebSockets/blob/master/misc/READMORE.md">Read more...</a>
<br><br>
2018-11-04 23:00:00 +00:00
2018-07-28 20:48:22 +00:00
2020-06-07 08:50:19 +00:00
<a href="https://github.com/uNetworking/uWebSockets.js/releases"><img src="https://img.shields.io/github/v/release/uNetworking/uWebSockets.js"></a> <a href="https://lgtm.com/projects/g/uNetworking/uWebSockets.js/context:cpp"><img alt="Language grade: C/C++" src="https://img.shields.io/lgtm/grade/cpp/g/uNetworking/uWebSockets.js.svg?logo=lgtm&logoWidth=18"/></a> <img src="https://img.shields.io/badge/downloads-50,000,000+-green" />
2019-08-19 00:38:46 +00:00
2019-01-15 13:33:43 +00:00
</div>
2020-06-07 08:50:19 +00:00
<br><br>
2019-01-15 13:33:43 +00:00
2020-06-09 15:41:21 +00:00
### :bulb: Familiar face
2018-12-26 08:15:31 +00:00
2020-06-09 15:41:21 +00:00
µ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:
2019-02-10 23:13:51 +00:00
2019-01-15 13:33:43 +00:00
```javascript
2019-04-22 22:54:56 +00:00
/* Non-SSL is simply App() */
require('uWebSockets.js').SSLApp({
2019-02-10 23:13:51 +00:00
2019-03-13 19:52:46 +00:00
/* There are tons of SSL options */
2019-02-10 23:13:51 +00:00
key_file_name: 'misc/key.pem',
cert_file_name: 'misc/cert.pem',
2019-04-22 22:54:56 +00:00
2019-02-10 23:13:51 +00:00
}).ws('/*', {
2019-04-22 22:54:56 +00:00
2019-03-13 19:52:46 +00:00
/* For brevity we skip the other events */
2019-02-10 23:13:51 +00:00
message: (ws, message, isBinary) => {
let ok = ws.send(message, isBinary);
}
2019-04-22 22:54:56 +00:00
2019-02-10 23:13:51 +00:00
}).any('/*', (res, req) => {
2019-04-22 22:54:56 +00:00
2019-03-13 19:52:46 +00:00
/* Let's deny all Http */
2019-02-10 23:13:51 +00:00
res.end('Nothing to see here!');
2019-04-22 22:54:56 +00:00
2019-03-13 19:52:46 +00:00
}).listen(9001, (listenSocket) => {
2019-04-22 22:54:56 +00:00
2019-03-13 19:52:46 +00:00
if (listenSocket) {
console.log('Listening to port 9001');
2018-11-04 23:00:00 +00:00
}
2019-04-22 22:54:56 +00:00
2018-10-04 21:18:50 +00:00
});
2018-07-28 20:48:22 +00:00
```
2018-11-03 11:45:56 +00:00
2020-06-09 15:41:21 +00:00
### :muscle: Unfair advantage
2019-04-22 22:54:56 +00:00
2020-06-22 07:19:58 +00:00
Being written in native code directly targeting the Linux kernel makes it way faster than any JavaScript implementation.
2019-04-22 22:54:56 +00:00
2020-06-09 15:41:21 +00:00
![](misc/chart.png)
2019-04-22 22:54:56 +00:00
2020-06-22 07:19:58 +00:00
* Install with `npm install uNetworking/uWebSockets.js#v18.2.0` or any such release. No compiler needed.
2020-04-12 19:17:13 +00:00
2020-06-09 15:41:21 +00:00
### :briefcase: Commercially supported
<a href="https://github.com/uNetworking">uNetworking AB</a> is a Swedish consulting & contracting company dealing with anything related to µWebSockets; development, support and customer success.
2019-01-15 13:33:43 +00:00
2020-06-09 15:41:21 +00:00
Don't hesitate <a href="mailto:alexhultman@gmail.com">sending a mail</a> 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.
2019-01-15 13:33:43 +00:00
2020-06-09 15:41:21 +00:00
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.
2019-04-22 22:54:56 +00:00
2020-06-09 15:41:21 +00:00
<img src="https://github.com/uNetworking/uWebSockets/raw/master/misc/2018.png" />
* µWebSockets.js is the Node.js binding to µWebSockets. Read more over at [µWebSockets](https://github.com/uNetworking/uWebSockets).