ts3

ts3 JS library on GitHub ts3 JS library on npm Download ts3 JS library

An abstracted Teamspeak 3 serverquery client

Version 1.0.1-1 License MIT
ts3 has no homepage
ts3 JS library on GitHub
ts3 JS library on npm
Download ts3 JS library
Keywords
teamspeakteamspeak3tsts3serverquery
No default JS file set by the package author so the URL is guessed. You can always browse all package files to use another one.

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.