🚀 Open Source & TypeScript First

teamspeak.js

A modern, fully typesafe TeamSpeak library for Node.js.

Built with TypeScript from the ground up, teamspeak.js provides a clean, intuitive API for interacting with TeamSpeak servers. Get full IntelliSense support and catch errors at compile time.

index.ts
import { Query } from 'teamspeak.js';

const query = new Query({
  host: '127.0.0.1'
});

await query.connect();

console.log('Connected to TeamSpeak server!');

Trusted by Developers

Join the growing community building TeamSpeak bots

0
Weekly Downloads
0
GitHub Stars
0
Forks
v0.0.0
Latest Version

Built for Modern Development

Everything you need to build powerful TeamSpeak bots

100% TypeSafe

Built with TypeScript from day one. Full IntelliSense support and compile-time error checking.

Lightning Fast

Optimized performance with connection pooling and efficient event handling.

Developer First

Intuitive API inspired by discord.js. If you know discord.js, you'll feel right at home.

Fully Extensible

Plugin architecture and event-driven design. Build complex bots with ease.

Enterprise Ready

Production-tested with comprehensive error handling and connection management.

Open Source

Apache 2.0 licensed, community-driven development. Contributions welcome worldwide.

Quick Start Guide

Get your TeamSpeak bot running in minutes

Installation
Install teamspeak.js using npm
Terminal
npm install teamspeak.js