🤖 Generate, build, handle and deploy your own bot with your favorite language, for Discord, or Telegram, or Slack.
Repository
Current version released
2 years ago
Dependencies
std
Versions
- v0.1.98Latest
- v0.1.97
- v0.1.96
- v0.1.95
- v0.1.94
- v0.1.93
- v0.1.92
- v0.1.91
- v0.1.9
- v0.1.89
- v0.1.88
- v0.1.87
- v0.1.86
- v0.1.85
- v0.1.84
- v0.1.83
- v0.1.82
- v0.1.81
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.3.1
- v0.3.1
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.01
- v0.1.0-beta.7
- v0.1.0-beta.6
- v0.3.0
- v0.2.0
- v0.1.0-beta.531
- v0.1.0-beta.53
- v0.1.0-beta.523
- v0.1.0-beta.522
- v0.1.0-beta.521
- v0.1.0-beta.52
- v0.1.0-beta.51
- v0.1.0-beta.5
- v0.1.0-beta.4
- v0.1.0-beta.32
- v0.1.0-beta.31
- v0.1.0-beta.3
- v0.1.0-beta.2
- v0.1.0-beta.1
- v0.1.0-beta
- v0.1.0
denobot
Deno client module for Botway.
Usage
after creating a new deno botway project, you need to use your tokens to connect with your bot.
...
import { createBot, enableCachePlugin, getToken, getAppId } from "./deps.ts";
import { events } from "./src/events/mod.ts";
...
export const bot = enableCachePlugin(
createBot({
token: getToken(),
botId: getAppId(),
intents: [],
events,
}),
);
...