
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
apiroyale is a Node.js library to interact with the Clash Royale API.
You can install this package using a package manager like npm:
npm install apiroyale
Note: Node.js 16.9.0 or higher is required.
This library helps you to interact with the Clash Royale API.
All fetched structures are cached for a short time to prevent unnecessary API calls.
You can use cache and cacheNested options to disable caching and save memory.
To start interacting with the API, create a new client:
import ClientRoyale from "apiroyale";
const client = new ClientRoyale({ token: "<your-token>" });
// Request a clan by tag
client.clans.fetch("<clan-tag>").then((clan) => {
console.log(clan.name);
});
// You can disable caching by passing `cache: false`
client.clans.fetch("<clan-tag>", { cache: false }).then((clan) => {
console.log(clan.name);
});
// Note that you can also pass default cache/cacheNested options to the client constructor
const client = new ClientRoyale({
token: "<your-token>",
cache: false,
cacheNested: false,
});
// Search for a clan by name
client.clans
.search({ name: "clan name", limit: 10 })
.then((clans) => {
console.log(clans.items[0].name);
// You can also use pagination
return client.clans.search({
name: "clan name",
limit: 10,
after: clans.paging.cursors.after,
});
})
.then((clans) => {
console.log(clans.items[0].name);
});
You can also do a raw request without using the client:
import { Rest } from "apiroyale";
const rest = new Rest();
rest.get("/clans/<clan-tag>").then((response) => {
console.log(response); // { maxAge: 1650906957599, data: { ... } }
});
This content is not affiliated with, endorsed, sponsored, or specifically approved by Supercell and Supercell is not responsible for it. For more information see Supercell’s Fan Content Policy.
FAQs
A Node.js library to interact with the Clash Royale API
The npm package apiroyale receives a total of 16 weekly downloads. As such, apiroyale popularity was classified as not popular.
We found that apiroyale 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.