uWebsockets.js for FreeBSD
Go to file
Alex Hultman fe2f890957 Update to uWS v20.7.0 2021-10-31 00:12:48 +02:00
.github/workflows Update c-cpp.yml 2021-10-24 22:52:00 +02:00
docs fix typedoc gen (#601) 2021-08-16 03:09:11 +02:00
examples An example for Rate limit (#566) 2021-06-29 20:38:24 +02:00
misc Add files via upload 2021-04-13 18:12:41 +02:00
src Fix and add more decompressors 2021-10-31 00:00:06 +02:00
tests Pass Autobahn again 2019-10-09 20:30:50 +02:00
uWebSockets@ab7f7eb964 Update to uWS v20.7.0 2021-10-31 00:12:48 +02:00
.gitattributes Don't include js files in language stats 2019-04-10 12:42:00 +02:00
.gitmodules
LICENSE
Makefile Add upload_host helper target 2021-10-24 23:10:33 +02:00
README.md Update README.md 2021-10-25 06:10:50 +02:00
build.c Build against BoringSSL 2021-10-24 22:39:41 +02:00

README.md


Simple, secure1 & standards compliant2 web server for the most demanding3 of applications. Read more...

Language grade: C/C++



Simple performance

µWebSockets.js is an HTTP/WebSocket server for Node.js that runs 8.5x that of Fastify and at least 10x that of Socket.IO. It comes with both router and pub/sub support and is suited for extraordinary performance needs. Browse the documentation and see the main repo. There are tons of examples but here's the gist of it all:

/* Non-SSL is simply App() */
require('uWebSockets.js').SSLApp({

  /* There are more SSL options, cut for brevity */
  key_file_name: 'misc/key.pem',
  cert_file_name: 'misc/cert.pem',
  
}).ws('/*', {

  /* There are many common helper features */
  idleTimeout: 30,
  maxBackpressure: 1024,
  maxPayloadLength: 512,
  compression: DEDICATED_COMPRESSOR_3KB,

  /* For brevity we skip the other events (upgrade, open, ping, pong, close) */
  message: (ws, message, isBinary) => {
    /* You can do app.publish('sensors/home/temperature', '22C') kind of pub/sub as well */
    
    /* Here we echo the message back, using compression if available */
    let ok = ws.send(message, isBinary, true);
  }
  
}).get('/*', (res, req) => {

  /* It does Http as well */
  res.writeStatus('200 OK').writeHeader('IsExample', 'Yes').end('Hello there!');
  
}).listen(9001, (listenSocket) => {

  if (listenSocket) {
    console.log('Listening to port 9001');
  }
  
});

💪 Unfair advantage

Being written in native code directly targeting the Linux kernel makes it way faster than any JavaScript implementation.

Low latencies are key to customer satisfaction and your competitive edge. Run low latency services at a lower cost.

⚔️ Battle proven

We've been fully standards compliant with a perfect Autobahn|Testsuite score since 20162. µWebSockets powers many of the biggest crypto exchanges in the world, handling trade volumes of multiple billions of USD every day. If you trade crypto, chances are you do so via µWebSockets.

📦 Easily installed

We recommend, for simplicity installing with yarn add uWebSockets.js@uNetworking/uWebSockets.js#v20.1.0 or any such release.

Being an open source project, you are of course perfectly free to choose other ways of installation as you might prefer.

💼 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.

⚙️ Gear up

µWebSockets.js is the Node.js integration of µWebSockets; a standalone C++ project. If performance is of utter importance, you don't necessarily have to use JavaScript/Node.js but could write apps in C++ using µWebSockets directly. It works exactly the same way, and will offer unbeatable performance for those highly demanding applications. Either way - the two projects both follow the same security testing, compliance testing and receive the same bug fixes and features.

🤝 Permissively licensed

Intellectual property, all rights reserved.

Where such explicit notice is given, source code is licensed Apache License 2.0 which is a permissive OSI-approved license with very few limitations. Modified "forks" should be of nothing but licensed source code, and be made available under another product name. If you're uncertain about any of this, please ask before assuming.