2018-11-03 12:41:47 +01:00
2018-11-03 12:35:42 +01:00
2018-11-03 12:35:42 +01:00
2018-11-03 12:41:47 +01:00
2018-10-28 16:07:21 +01:00
2018-11-03 12:35:42 +01:00
2018-10-04 23:18:50 +02:00

µWS ("microWS") for Node.js is simple and efficient[1] messaging for the modern web.

Read more

This repository tracks the development of Node.js bindings for µWebSockets v0.15.

const uWS = require('...lalala');

const app = uWS.SSLApp({
  cert: 'my_cert.pem',
  key: 'my_key.pem'
}).get('/whatsmy/useragent', (res, req) => {
  res.end('Hello ' + req.getHeader('user-agent'));
}).get('/*', (res, req) => {
  res.end('Hello otherwise!');
}).listen(3000, 0, (token) => {
  console.log('Listening to port 3000');
});
Description
uWebsockets.js for FreeBSD
Readme 1.8 MiB
Languages
C++ 85.4%
JavaScript 7.7%
C 5.2%
QMake 1.5%
Makefile 0.2%