frostbite-rcon-utils

API Reference

frostbite-rcon-utils API surface is tiny. frostbite-rcon-utils defines a set of helper functions for you to use when you are creating a RCON client or server.

This file documents the complete frostbite-rcon-utils API. Keep in mind that frostbite-rcon-utils is only concerned with encoding and decoding the data being sent or received.

Top-Level Exports

Importing

Every function described above is a top-level export. You can import any of them like this:

ES6

import { encodePacket } from 'frostbite-rcon-utils';

ES5 (CommonJS)

var encodePacket = require('frostbite-rcon-utils').encodePacket;