npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

teamspeak3query

v0.2.0

Published

A Teamspeak3 Query interface in Node.

Downloads

10

Readme

Teamspeak 3 Query (ts3query)

A Teamspeak3 Query interface in Node.js.

Usage

Installation

$ npm i teamspeak3query

How to use

cosnt TS3Query = require('teamspeak3query').TS3Query;
const ts = new TS3Query();

Package exports a factory function so you can write it less verbously:

const ts = require('teamspeak3query')();
// or
const ts3query = require('teamspeak3query');
const ts = ts3query();

Connecting to teamspeak 3 query

const connectionPromise = ts.connect(port, host);
connectionPromise.then(...);

connect method returns promise that is resolved after successful connection to teamspeak 3 query and receiving welcome message from teamspeak 3 server. Rejected in case of any error, be it connection or server did not respond as a teamspeak 3 query.

Sending commands to teamspeak 3 query

ts.send(command, params);

// Example:
ts.send(clientinfo, {clid: 109}).then(client => ...)

send method accepts 2 parameters 1st is command which must be a string, and 2nd is object containing parameters for the command to be send. Parameters are object which every key value must be a string. Parameters are appended to the command as key=value or if value is a boolean and equal true - -key. You can ofcourse pass the parameters along with a command like: clientinfo clid=109.

For information about all available commands head to TeamSpeak3 Query Manual;

Closing connection

ts.close()

It is important to note that you need to close connection by yourself by calling close method on TS3Query object.

NOTE: Note that all pending messages to teamspeak 3 server will end in promise rejection with error saying that connection was closed before getting a response, so i most of the cases you would like to wait untill all of the messages are received and then close connection.

If you want to wait for all of the messages to complete and then close use waitAndClose method. It will wait for all pending messages at the moment of method call, all commands send after call of this method wont be waiting upon and could end in not receiving response.

Handling teamspeak 3 query events

To handle teamspeak 3 events you can register event handlers with on and once methods. Available events are: server and channel and text. Then you will need to register event with teamspeak 3 server by calling servernotifyregister (check teamspeak 3 query manual).

NOTE: Note that teamspeak 3 query can listen for events only on one channel, it is limitation on teamspeak 3 server.

Callback will be called with object containg 2 keys event and data where event describes event send by teamspeak 3 server (notifytextmessage, notifycliententerview, notifyclientleftview) and data is object with all of the data send by teamspeak 3 query.

Node version

Tested with node version: v10.7.0. I cannot asure it will work with other versions of node.

License

MIT