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

working-rcon

v0.2.8

Published

A working rcon library

Downloads

18

Readme

Introduction

This is a Valve RCON implementation that tries to provide a working RCON library. This package was made after finding out that most of the implementations of the RCON protocol do not work correctly when used with Counter Strike: Global Offensive. This is not necessarily the fault of the library maintainers. The RCON protocol is not well defined and implementations vary wildly. In fact, CS:GO does not work well with most of the libraries mostly because it does not adhere to the authentication scheme described in Valve's documentation.

This package aims to be an RCON library that just works. We do not attempt to correctly implement the protocol as described in Valve's Developer Wiki, but instead attempt to make this library work on as many games as possible.

The current list of verified working games is:

  • Counter Strike: Global Offensive

If you find out that this library works on a certain game, or, more importantly, doesn't work on a certain game, please let us know through the issue tracker on Github, and we will add it to this list or try to fix the issue.

Installation

npm install working-rcon

Example usage

const { connect, TimeoutError } = require('working-rcon')

const main = async () => {
	try {
		const client = await connect('34.123.45.23', 27015, 'password', 5000)

		const status = await client.command('status')
		const stats = await client.command('stats')

		await client.disconnect()

		console.log(status)
		console.log(stats)
	} catch (err) {
		if (err instanceof TimeoutError) {
			console.error('request timed out')
		} else {
			throw err
		}
	}
}

API Documentation

connect(host: string, port: number, password: string, timeout: number = 1000): Promise<RconClient>

Creates a new connection and returns an RCON client object. Can throw a Node socket error if something goes wrong during connecting. Can throw a TimeoutError if the authentication phase times out.

This call intentionally does not actually wait for an authentication response from the server, because this sequence is not reliable on all servers. For instance on CS:GO servers there is no reliable way to verify that the authentication was successful.

Parameters

  • host: The hostname of the target host.
  • port: The port running the RCON server.
  • password: The rcon password.
  • timeout: A timeout that will be used when sending requests to the server. A TimeoutError will be thrown if this timeout is exceeded

Return value

A promise that resolves to an instance of RconClient.

RconClient#command(cmd: string): Promise<string>

Sends an RCON command to the server and returns the response. The promise may reject with a TimeoutError if the timeout specified in the connect call is reached.

Parameters

  • cmd: The command to send.

Return value

A promise that resolves to the response of the server.

RconClient#disconnect(): Promise<undefined>

Closes the RCON connection.

Return value

A promise that resolves when the connection has been closed.