Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stamina-api

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stamina-api

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

  • 1.0.6-dev
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
2
Weekly downloads
 
Created
Source

Discord NPM Download

Stamina API

Ce paquet Npm fourni une interface pour intéragir avec l'API de Stamina

Installation

Vous pouvez simplement installer la dépendance à votre projet depuis Npm :

$ npm install stamina-api

Mise en place

Importation

const Stamina = require('stamina-api');

Utilisation

Blague aléatoire

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']
});

Blague aléatoire d'une catégorie

const blague = await Stamina.get("jokes").byType('dev');

Blague à partir de son ID

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);

Valeur retournée

// console.log(blague);

{
  "id": 1,
  "type": "dev",
  "content": {
    "blague": "Question.",
    "reponse": "Réponse."
  }
}

Keywords

FAQs

Package last updated on 04 Dec 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc