0.0.1 • Published 5 years ago

byond-node v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago
based on tigercat2000's http2byond

byond-node

A Node.js library for communicating with BYOND servers written in Typescript.

Installation

npm install byond-node

Example

const ByondClient = require("byond-node");

const client = new ByondClient({
	address: "localhost",
	port: 1337
	timeout: 2000
});

client.call("?status")
	.then(
		res => console.log(res),
		err => console.error("ERR", err));
0.0.1

5 years ago