turn-js
0.7.0 • Public • Published

TURN (Traversal Using Relay NAT) library written entirely in JavaScript.
- implements (most of) the features specified in RFC 5766
- supports TCP and UDP communication
- offers callback and promise based API
- can be browserified (to be used in chrome apps)
npm install turn-js
myClient = turn(serverAddr, serverPort, user, pwd, transport)
myClient.allocate(function(address) {}, function(error) {})
myClient.createPermission(address, function() {}, function(error) {})
myClient.createPermission(address)
myClient.bindChannel(address, port, channel, lifetime, function() {}, function(error) {})
myClient.bindChannelP(address, port, channel)
myClient.refresh(lifetime, function() {}, function(error) {})
myClient.refreshP(lifetime)
myClient.close(function() {}, function(error) {})
myClient.sendToRelay(bytes, address, port, function() {}, function(error))
myClient.sendToRelayP(bytes, address, port)
myClient.sendToChannel(bytes, channel, function() {}, function(error) {})
myClient.sendToChannelP(bytes, channel)
Package Sidebar
Install
Weekly Downloads