deno.land / x / dinoscript@v1.0

src40 KB
tests9 KB
mod.ts119 B
README.md672 B
.gitignore25 B

What is DinoScript?

DinoScript is an unofficial Discord library that allows you to build Discord Bots with the Deno runtime.

Usage

import { Client } from 'https://deno.land/x/katana/mod.ts'

const client = new Client();

client.on('ready', () => {
  console.log('Bot has logged in!');
});

client.on('message', (message) => {

  if (message.content === 'hello') {
    message.channel.send({
      content: 'hello'
    });
  }
});

client.login('token');

Features

Contributing

All contribution is appreciated. You can contribute to this repo by forking and starring, and submitting any Pull Requests.

dinoscript

Version Info

Tagged at
3 years ago