uWebSockets.js/README.md

57 lines
2.0 KiB
Markdown
Raw Normal View History

2019-01-15 13:33:43 +00:00
<div align="center">
<img src="misc/logo.svg" height="180" />
2018-11-04 23:00:00 +00:00
2019-08-18 21:59:25 +00:00
*µWebSockets.js™ (it's "[micro](https://en.wikipedia.org/wiki/Micro-)") is simple, secure*<sup>[[1]](https://github.com/uNetworking/uWebSockets/tree/master/fuzzing)</sup> *& standards compliant*<sup>[[2]](https://unetworking.github.io/uWebSockets.js/report.pdf)</sup> *web I/O for the most demanding*<sup>[[3]](https://github.com/uNetworking/uWebSockets/tree/master/benchmarks)</sup> *of applications.*
2018-07-28 20:48:22 +00:00
2019-02-10 22:35:51 +00:00
• [TypeScript docs](https://unetworking.github.io/uWebSockets.js/generated/) • [Read more & user manual (C++ project)](https://github.com/uNetworking/uWebSockets/blob/master/misc/READMORE.md)
2019-01-15 13:33:43 +00:00
</div>
2019-03-13 20:28:39 +00:00
#### In a nutshell.
2018-12-26 08:15:31 +00:00
2019-03-13 20:28:39 +00:00
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
2019-04-22 22:54:56 +00:00
#### Ready all thrusters.
2019-06-09 09:45:11 +00:00
Install with `npm install uNetworking/uWebSockets.js#v15.11.0` or any such [release](https://github.com/uNetworking/uWebSockets.js/releases). No compiler needed.
2019-04-22 22:54:56 +00:00
![](misc/features_strip.png)
2019-03-13 20:28:39 +00:00
#### Pay what you want.
2019-03-13 19:52:46 +00:00
Commercially developed on a sponsored/consulting basis; BitMEX, Bitfinex and Coinbase are current or previous sponsors. Contact [me, the author](https://github.com/alexhultman) for support, feature development or consulting/contracting.
2019-01-15 13:33:43 +00:00
2019-03-13 19:52:46 +00:00
![](https://raw.githubusercontent.com/uNetworking/uWebSockets/master/misc/2018.png)
2019-01-15 13:33:43 +00:00
2019-04-22 22:54:56 +00:00
#### Know thy legal matters.
2019-03-13 19:52:46 +00:00
*µWebSockets.js is intellectual property licensed Apache 2.0 with limitations on trademark use. Forks must be clearly labelled as such and must not be confused with the original.*