uWebsockets.js for FreeBSD
Go to file
2019-11-08 12:23:32 +01:00
docs Remove res argument in callback (#204) 2019-10-17 03:39:55 +02:00
examples Update uWS, pass Autobahn with pubsub SSL/non-SSL 2019-10-09 00:29:53 +02:00
misc Add files via upload 2019-04-24 04:35:20 +02:00
src Update to uWS v0.16.1, wrap app.publish 2019-10-17 02:19:46 +02:00
tests Pass Autobahn again 2019-10-09 20:30:50 +02:00
uWebSockets@37d1cdf29d Update uWS 2019-11-08 12:23:32 +01:00
.gitattributes Don't include js files in language stats 2019-04-10 12:42:00 +02:00
.gitmodules Add uWebSockets submodule 2018-11-04 00:11:12 +01:00
.travis.yml Update .travis.yml 2019-02-26 18:21:33 +01:00
build.c Build for Node.js 12 2019-04-24 02:10:45 +02:00
LICENSE Apache 2.0 license 2018-11-15 16:01:49 +01:00
Makefile Move build logic to C program, add ARM64 target 2019-04-16 14:46:43 +02:00
README.md Document v16.1.0 2019-10-17 02:29:12 +02:00

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

TypeScript docsRead more & user manual (C++ project)

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

In a nutshell.

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#v16.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.