New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ts3

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts3

An abstracted Teamspeak 3 serverquery client

latest
Source
npmnpm
Version
1.0.1-1
Version published
Maintainers
1
Created
Source

node-ts3

an abstracted teamspeak 3 server query client

Documentation

Install

npm install ts3 -S

Usage

const TS3 = require('ts3')

const ts = new TS3()

ts.connect('127.0.0.1', 10011)
	.then(async () => {
		let auth = await ts.auth('serveradmin', 'supersecret', 1)
		console.log('authed', auth)

		ts.setName('node-ts3')

		ts.subscribe('server')
		ts.subscribe('channel', 1)
		ts.subscribe('textprivate')
	})

ts.on('clientJoin', (ev) => {
	ev.client.message('Hello ' + ev.client.nick + '!')
})

See additional examples in the examples directory.

Documentation

Generated documentation is available from connormcf.com/node-ts3.

Keywords

teamspeak

FAQs

Package last updated on 28 Feb 2018

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