1.0.2 • Published 10 years ago

stunturncheck v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

STUN and TURN check

Tests connectivity with a STUN or TURN server using WebRTC.

How to use it

var stunturncheck = require('stunturncheck');

stunturncheck({url: 'stun:stun.l.google.com:19302'}, function(err, res) { 
    if (err) {
        // some kind of error occurred
        return;
    }
    if (res > 0) {
        // a stun server could be reached and the local description
        // contains srflx (for stun) or relay (for turn) candidates.
    } else {
        // stun server could not be reached, port may be blocked.
    }
});

The first argument to stunturncheck follows the same convention as the

To test a TURN/TCP server you would pass something along the lines of

{url: 'turn:some.host:3478?transport=tcp', username: 'user', credential: 'secret'}

as first argument.

License

MIT

Credits

If you like this, follow: @HCornFlower on twitter.

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago