Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@discordia/action-anilist-user

mfasman958MIT1.5.0

An action to look up an user using the AniList GraphQL API

discordia, discord, action, action-anilist-user

readme

Note: Some of the links in this README file work better on the documentation site

@discordia/action-anilist-user @discordia/action-anilist-user

What does this action do?

@discordia/action-current-weather uses the Open Weather API current weather endpoint to get the current weather in a location that the server member specifies. You must provide your own API key when creating an instance of this action.

The request comes in the form @BotName weather {city name} {state} {country code} where {state} and {country code} are each optional.

Installation

# install the module using npm
npm install @discordia/action-anilist-user

# install the module using yarn
yarn add @discordia/action-anilist-user

Usage

Add the query to the existing array of queries that your bot can respond to.

const DiscordiaFramework = require('@discordia/framework');
const actionAniListUser = require('@discordia/action-anilist-user');

const actions = [
  // Other actions can go here...
  actionAniListUser,
];

const myBot = new DiscordiaFramework('DISCORD TOKEN', actions);

myBot.start();

changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

1.5.0 (2020-05-18)

Features

  • anilist: introduce AniList actions (8075e1b)