
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
thunderapi
Advanced tools
Easily get data from War Thunder without having to write huge chunks of code
A node.js scraper to get profile and squadron data from War Thunder
ThunderAPI is a simple, promise-based data scraper for the War Thunder site to get all kinds of data, including player and squadron info. Additionally, it makes full use of ES2017's async/await functionality for clear, concise code that is simple to write and easy to comprehend.
Node.js v8 or higher is required.
npm install thunderapi
To install the development branch (please note that this may not be stable):
npm install thunderstats/thunderapi
Documentation for the master branch can be found here.
const ThunderAPI = require("thunderapi");
// Create a new instance of ThunderAPI
const thunderAPI = new ThunderAPI();
// The player can be any in-game player. In this example,
// we'll get the profile of the player Abinavski, and log
// the title he set.
thunderAPI.getPlayer("Abinavski")
// We handle the data returned here, in this case
// by logging the title the player has set.
.then(user => console.log("Title:", data.title))
// If an error occurred, we catch it here!
.catch(err => console.error("Oh no, an error occurred!\n", err));
If you wish to contribute to ThunderAPI, you are free to do so! Before getting started, please read the contribution guidelines first.
If you encounter any problems using the ThunderAPI, want to leave a feature suggestion or just want a gentle nudge in the right direction, feel free to join our official Discord server!
FAQs
Easily get data from War Thunder without having to write huge chunks of code
We found that thunderapi 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.