Skip to main content

inflix

Requires.io

Inflix is an easy-to-use Discord API wrapper for Deno.

Instillation

import Inflix from "https://deno.land/x/inflix/index.ts";

Usage

Example

import Inflix from "https://deno.land/x/inflix/index.ts";

const client = new Inflix.Client();
client.login("Your Token Here");

client.on("ready", () => {
  console.log("Bot Online");
});

Documentation

Events

<client>.on(<Event>, (<Argument(s)>) => {
  // Code
})
  • guild_create
    @param guild Guild
  • message_create
    @param message Message
  • message_update
    @param message Message
  • ready
  • typing_start
    @param user User

Client

const client = new Inflix.Client();

// Or with debug mode

const client = new Inflix.Client(true);
Methods
  • login
    @param token string
Properties
  • user
    @type ClientUser
  • debug
    @type boolean

Client User

Properties
  • username
    @type string
  • discriminator
    @type string | number
  • verified
    @type boolean
  • id
    @type string
  • flags
    @type number
  • email
    @type string
  • bot
    @type boolean
  • avatar
    @type string

License

License

Copyright (c) 2021 BumpyBill

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.