New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

turn-admin-client

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turn-admin-client

A tool to access live TURN administrative information


Version published
Maintainers
1
Created

Turn-admin-client

Allows you to go into a the TURN server's administrative interface - TURN server can be found on google-code

TravisCI Build Status

How to use

	var TurnAdminClient = require('turn-admin-client');
	
	var client = new TurnAdminClient({
      port: 8124
    });

    client.init();
    
    //do something
    
    client.getActiveSessions(function(err, sessions){
    
    	//got an array of sessions
    	//each session is an object
    
    	client.disconnect();
    })
    
    

Keywords

FAQs

Package last updated on 24 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts