9b3efbdfa3
Usage: ```ts const token: us_socket_t; const port = uWS.us_socket_local_port(token); ```
21 lines
525 B
JavaScript
Vendored
21 lines
525 B
JavaScript
Vendored
/* Same as HelloWorld, but with automatic port selection. */
|
|
|
|
const uWS = require('../dist/uws.js');
|
|
let port = 0;
|
|
|
|
const app = uWS./*SSL*/App({
|
|
key_file_name: 'misc/key.pem',
|
|
cert_file_name: 'misc/cert.pem',
|
|
passphrase: '1234'
|
|
}).get('/*', (res, req) => {
|
|
res.end('Hello World!');
|
|
}).listen(port, (token) => {
|
|
if (token) {
|
|
// retrieve listening port
|
|
port = uWS.us_socket_local_port(token);
|
|
console.log('Listening to port ' + port);
|
|
} else {
|
|
console.log('Failed finding available port');
|
|
}
|
|
});
|