
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
squad-rcon
Advanced tools
This library is designed for the game Squad, it will give you the ability to easily connect to Rcon and parse/execute commands. I hope it will be useful to you!
This library is designed for the game Squad, it will give you the ability to easily connect to Rcon and parse/execute commands. I hope it will be useful to you!
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js.
If this is a brand new project, make sure to create a package.json
first with
the npm init
command.
Installation is done using the
$ npm install squad-rcon
or
$ yarn add squad-rcon
import { Rcon } from 'squad-rcon';
(async () => {
try {
const rcon = new Rcon({
id: 1,
host: '127.0.0.1',
port: 1111,
password: 'qwerty',
});
await rcon.init();
rcon.on('ListPlayers', (data) => {
console.log(data);
});
rcon.execute('ListPlayers');
} catch (e: unknown) {
console.log(e);
}
})();
import { Rcon } from 'squad-rcon';
Rcon({
id: 1,
host: '127.0.0.1',
port: 1111,
password: 'qwerty',
pingDelay: 60000, // optional
autoReconnect: true, // optional
autoReconnectDelay: 60000, // optional
logEnabled: true, // optional
chatListeners: {
onChatMessage: (data: TChatMessage) => null, // optional
onPlayerWarned: (data: TPlayerWarned) => null, // optional
onPlayerKicked: (data: TPlayerKicked) => null, // optional
onPlayerBanned: (data: TPlayerBanned) => null, // optional
onSquadCreated: (data: TSquadCreated) => null, // optional
onPossessedAdminCamera: (data: TPossessedAdminCamera) => null, // optional
onUnPossessedAdminCamera: (data: TUnPossessedAdminCamera) => null, // optional
}, // optional
});
Rcon
return some pre-defined functions:
Function | Return | Type | Emitter |
---|---|---|---|
init | Promise | Promise | |
close | Promise | Promise | |
rconEmitter | Emitter | EventEmitter | on() |
execute | Promise | Promise<string> | on('data') |
getListPlayers | Promise | TPlayer[] | on('ListPlayers') |
getListSquads | Promise | TSquad[] | on('ListSquads') |
getCurrentMap | Promise | TMap | on('ShowCurrentMap') |
getNextSquads | Promise | TMap | on('ShowNextMap') |
Event | Return | Type |
---|---|---|
ListPlayers | response | TPlayer[] |
ListSquads | response | TSquad[] |
ShowCurrentMap | response | TMap |
ShowNextMap | response | TMap |
CHAT_MESSAGE | response | TChatMessage |
POSSESSED_ADMIN_CAMERA | response | TPossessedAdminCamera |
UNPOSSESSED_ADMIN_CAMERA | response | TUnPossessedAdminCamera |
PLAYER_WARNED | response | TPlayerWarned |
PLAYER_KICKED | response | TPlayerKicked |
SQUAD_CREATED | response | TSquadCreated |
PLAYER_BANNED | response | TPlayerBanned |
data | response | TRconResponse |
err | error | Error |
connected | ||
close |
FAQs
This library is designed for the game Squad, it will give you the ability to easily connect to Rcon and parse/execute commands. I hope it will be useful to you!
The npm package squad-rcon receives a total of 21 weekly downloads. As such, squad-rcon popularity was classified as not popular.
We found that squad-rcon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.