
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
BattleCon is a Battlefield / Frostbite engine RCON layer built on top of nothing less than the excellent node.js platform.
With BattleCon it's easy to create your very own server management interface, like automatic map votings, auto team balancing, live player stats and more.
var BattleCon = require("battlecon"),
bc = new BattleCon("host", port, "pass").use("core");
bc.exec("version", function(err, res) {
if (err) {
console.log("Error: "+err);
return;
}
console.log("version:", res);
});
bc.connect(); // Connects and logs in
...
bc.on("event", function(evt) {
console.log("Event:", evt);
});
The core module implements common commands used between Frostbite-driven games, like logging in and out, version and server info querying.
Additionally, BattleCon supports game-specific modules, like the BF3 and BF4 modules. Loading modules is simple:
...
var bc = new BattleCon("host", port, "pass").use("BF4");
...your logic...
bc.connect();
Currently, the game modules are quite basic and provide basic functionality only. Feel free to extend them and send me a pull request!
There is a simple example of how to use BattleCon, like reacting to server events and issuing commands:
Apache License, Version 2.0
FAQs
A Battlefield / Frostbite engine RCON layer on node.js
The npm package battlecon receives a total of 0 weekly downloads. As such, battlecon popularity was classified as not popular.
We found that battlecon 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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.