Skip to main content
Deno 2 is finally here 🎉️
Learn more

dutkyo.ts

엔트리 봇을 쉽게 만들 수 있는 deno 라이브러리입니다.

시작하기

import { Client } from "https://deno.land/x/dutkyo/mod.ts";
const bot = new Client();

bot.on("ready", (d) => {
  console.log(`hello, ${d.user.nickname}`);
});

bot.on("message", (d) => {
  if (d.content == "!hello") {
    d.reply(`hello, ${d.writer.nickname}`);
  }
});

bot.login("id", "password");