Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
cloudstorm
Advanced tools
Part of the WeatherStack
CloudStorm is a small library specially made to only cover the Gateway area of the discord api.
It makes no assumptions about the rest of your stack, therefore you can use it anywhere as long as you use node 12 or higher.
const { Client } = require("cloudstorm");
const bot = new Client(token, { intents: ["GUILDS"] });
const startup = async () => {
await bot.connect();
bot.on("ready", () => {
console.log("Bot received ready event");
});
};
startup().catch(e => {
console.error("Error on startup!");
console.error(e);
});
You may wonder how you you are able to get the id of a shard where an event originated from, but don't fear, CloudStorm helps you with that by adding a shard_id
property to the events that are forwarded.
So an event you receive may look like this:
{
"op":0,
"t":"PRESENCE_UPDATE",
"s":1337,
"shard_id":0,
"d": {
"game": null,
"guild_id": "id",
"nick": null,
"roles": [],
"status": "offline",
"user": {
"id": "id"
}
}
}
I've written a general whitepaper on the idea of microservice bots, which you can find on gist: Microservice Bot Whitepaper
You can find the docs at https://daswolke.github.io/CloudStorm/
To install CloudStorm, make sure that you have node 12 or higher and npm installed on your computer.
Then run the following command in a terminal npm install cloudstorm
FAQs
Minimalistic Discord Gateway library
The npm package cloudstorm receives a total of 177 weekly downloads. As such, cloudstorm popularity was classified as not popular.
We found that cloudstorm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.