0.0.2-extends • Published 4 months ago

@neisven/double.js v0.0.2-extends

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago
npm i @neisven/double.js
  • How to start? create index.js execute terminal: npm init -y execute terminal: npm i @neisven/double.js

after..

put in file:

const { DClient } = require("@neisven/double.js");
const bot = new DClient({
  token: "your token",
  prefix: "!" // replace on your prefix!
});

bot.readyCommand({
  code: `$print[Bot login as $userTag]`
});

bot.command({
  name: "ping",
  code: `
  $sendMessage[Hey! My delay is.. $ping]
  `
});

bot.connect();

great!