uWebsockets.js for FreeBSD
Go to file
Alex Hultman 3860b922c7 Some clean-ups 2020-02-23 18:06:34 +01:00
docs Wrap and document unsubscribeAll, ping 2020-01-19 20:24:44 +01:00
examples Wrap ca_file_name option 2019-12-05 21:30:49 +01:00
misc Add files via upload 2019-04-24 04:35:20 +02:00
src Some clean-ups 2020-02-23 18:06:34 +01:00
tests Pass Autobahn again 2019-10-09 20:30:50 +02:00
uWebSockets@588d234d45 Update uWS to v0.17.1 2020-01-19 20:06:25 +01:00
.gitattributes
.gitmodules
.travis.yml
LICENSE
Makefile Make sure to handle double uWS.free 2019-12-21 19:38:02 +01:00
README.md Update README.md 2020-01-19 20:37:12 +01:00
build.c Update uWS, add /W3 to Windows builds 2019-12-26 20:21:53 +01:00

README.md

µWebSockets.js™ (it's "micro") is simple, secure[1] & standards compliant[2] web I/O for the most demanding[3] of applications.

For PythonUser manualDocs

© 2016-2019, >39,632,272 downloads

In a nutshell.

Think of it as a complete replacement to both Express.js and Socket.IO, written entirely in C/C++ for maximum performance and reliability. There are tons of examples but here's the gist of it all:

/* 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');
  }
  
});

Ready all thrusters.

Install with npm install uNetworking/uWebSockets.js#v17.1.0 or any such release. No compiler needed.

Pay what you want.

Commercially developed on a sponsored/consulting basis; BitMEX, Bitfinex and Coinbase are current or previous sponsors. Contact me, the author for support, feature development or consulting/contracting.

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