Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
stamina-api
Advanced tools
Ce module est une api consernant le site Stamina et le jeu portant le même nom, nous sommes encore en développement, mais notre module sera utilisé par vous et par nous les développeurs de Stamina. Mais vous n'aurez accès aux fonctions de développement co
Ce paquet Npm fourni une interface pour intéragir avec l'API de Stamina
Vous pouvez simplement installer la dépendance à votre projet depuis Npm :
$ npm install stamina-api
const Stamina = require('stamina-api');
const blague = await Stamina.get("jokes").byType("random")
Avec cette méthode, vous pouvez spécifier certains types que vous ne souhaitez pas recevoir.
const blague = await Stamina.get("jokes").byType("random", {
disallow: ['dark', 'limit']
});
const blague = await Stamina.get("jokes").byType('dev');
Les blagues sont identifiées par un ID que vous recevez en même tant que chaque blague.
Spécifiez cet identifiant en paramètre et vous l’obtiendrez à nouveau.
const blague = await Stamina.get("jokes").byID(50);
// console.log(blague);
{
"id": 1,
"type": "dev",
"content": {
"blague": "Question.",
"reponse": "Réponse."
}
}
FAQs
Npm module can make jokes generator and other. This module is for Stamina website and game. - Only Stamina's developpers: Can manage Stamina's infrastructure.
We found that stamina-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.