
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@krp-races/krp-node-wrapper
Advanced tools
A node.js wrapper for a dedicated or challenge server in kart racing pro.
A node.js wrapper for a dedicated or challenge server in kart racing pro.
This package was tested under Node.js 20.18.0 x64.
Kart Racing Pro release13e was used while testing.
pnpm add @krp-races/krp-node-wrapper
import { LiveTimingClient } from "@krp-races/krp-node-wrapper";
const client = new LivetimingClient({
type: "udp4",
host: "127.0.0.1",
port: 5100,
password: "123",
trackPositions: 0,
collisions: 0,
});
console.log("Enable Livetiming Client");
client.setEnabled(true);
| Methods | Description |
|---|---|
| setEnabled(enabled: boolean) | Set Client enabled. |
| getEnabled() | Is Client enabled? |
| getStatus() | Current Client status. |
| Event | Description |
|---|---|
| "connected" | Client connected. |
| "disconnected" | Client disconnected. |
| "data" | Client data update. |
| "error" | Client error occured. |
client.on("data", (data) => {
console.log(data);
});
The "QUIT" command will always lead to a timeout because the server doesn't answer afterwards.
import { RemoteAdminClient } from "@krp-races/krp-node-wrapper";
const client = new RemoteAdminClient({
type: "udp4",
host: "127.0.0.1",
port: 5100,
password: "123",
});
console.log("Enable Remote Admin Client");
client.setEnabled(true);
| Methods | Description |
|---|---|
| setEnabled(enabled: boolean) | Set Client enabled. |
| getEnabled() | Is Client enabled? |
| getStatus() | Current Client status. |
| sendCommand(command: 'QUIT' | 'MSG', message?: string) | Send command. |
client.sendCommand('QUIT');
client.sendCommand('MSQ', 'Hello World!);
| Event | Description |
|---|---|
| "connected" | Client connected. |
| "disconnected" | Client disconnected. |
| "error" | Client error occured. |
client.on("data", (data) => {
console.log(data);
});
Guidelines are defined here.
Released under the AGPL-3.0 License.
FAQs
A node.js wrapper for a dedicated or challenge server in kart racing pro.
We found that @krp-races/krp-node-wrapper demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.