A very lightweight and chatbot with multi language support

Overview

KUKI-BOT-API

Enjoying kuki-bot-api?

Developers: Nksama - Telegram

Pranav Ajay Discord: MoeZilla#4285 Telegram: PranavAjay

Simple Example

const Kukibot = require("kuki-bot-api");
const kukiai  =  new  Kukibot({name: "Pranav", owner: "MoeZilla"});

kukiai.moe("Hi").then(console.log)

Discord Example:

{ if (message.author.bot) return; let content = message.content; kukiai.moe(content).then(reply => message.channel.send(reply, { }) ); }); client.login(token); ">
const discord = require("discord.js");

const client = new discord.Client();

const Kukibot = require("kuki-bot-api");

const token = ''; // your discord bot token

const kukiai  =  new  Kukibot({name: "Pranav", owner: "MoeZilla"});

client.on("message", async message => {

  if (message.author.bot) return; 

  let content = message.content;

  kukiai.moe(content).then(reply =>

    message.channel.send(reply, {

             

    })

  ); 

});

client.login(token);

Async / Await

const Kukibot = require("kuki-bot-api");
const kukiai  =  new  Kukibot({name: "Pranav", owner: "MoeZilla"});

async function main() {
  const msg = await kukiai.moe("Hi");

  console.log(msg);
}
main();

Instagram Example

{ if (message.author.id === client.user.id) return; message.markSeen(); let content = message.content; if(!content) return; kukiai.moe(content).then(r => message.reply(r)); }); client.login('username', 'password'); ">
const Insta = require('@androz2091/insta.js');
const client = new Insta.Client();
const fetch = require("node-fetch");
const Kukibot = require("kuki-bot-api");
const kukiai  =  new  Kukibot({name: "Pranav", owner: "MoeZilla"});
 
client.on("messageCreate", async message => {
  if (message.author.id === client.user.id) return;

  message.markSeen();

    let content = message.content;
      if(!content) return;
          kukiai.moe(content).then(r => message.reply(r));
            });

client.login('username', 'password'); 
You might also like...

FriendAdvisor is a mobile app with a focus on allowing friends and family to coordinate and receive text notifications about upcoming group events.

FriendAdvisor is a mobile app with a focus on allowing friends and family to coordinate and receive text notifications about upcoming group events.

Sep 29, 2022

Defines the communication layer between mobile native(iOS/Android) and webview using JSON Schema and automatically generates SDK code

Defines the communication layer between mobile native(iOS/Android) and webview using JSON Schema and automatically generates SDK code.

Dec 8, 2022

A responsive image polyfill for picture, srcset, sizes, and more

Picturefill A responsive image polyfill. Authors: See Authors.txt License: MIT Picturefill has three versions: Version 1 mimics the Picture element pa

Dec 31, 2022

A high-performance, dependency-free library for animated filtering, sorting, insertion, removal and more

MixItUp 3 MixItUp is a high-performance, dependency-free library for animated DOM manipulation, giving you the power to filter, sort, add and remove D

Dec 24, 2022

JavaScript Survey and Form Library

JavaScript Survey and Form Library

SurveyJS is a JavaScript Survey and Form Library. SurveyJS is a modern way to add surveys and forms to your website. It has versions for Angular, jQue

Jan 1, 2023

Extensive math expression evaluator library for JavaScript and Node.js

Extensive math expression evaluator library for JavaScript and Node.js

🏠 Homepage Fcaljs is an extensive math expression evaluator library for JavaScript and Node.js. Using fcal, you can perform basic arithmetic, percent

Dec 19, 2022

Components for interactive scientific writing, reactive documents and explorable explanations.

Components for interactive scientific writing, reactive documents and explorable explanations.

@curvenote/article The goal of @curvenote/article is to provide web-components for interactive scientific writing, reactive documents and explorable e

Dec 24, 2022

Create explorable explanations and interactive essays.

Create explorable explanations and interactive essays.

Tutorials | Examples | Docs | Chatroom | Mailing list | Twitter What is Idyll? For an introduction to Idyll, API reference, examples, and tutorials, p

Dec 27, 2022

Browser fingerprinting library with the highest accuracy and stability.

Browser fingerprinting library with the highest accuracy and stability.

FingerprintJS is a browser fingerprinting library that queries browser attributes and computes a hashed visitor identifier from them. Unlike cookies a

Dec 31, 2022
Releases(v1.1)
Owner
Artificial Intelligence
It's An Artificial Intelligence
Artificial Intelligence
Free, open-source crypto trading bot, automated bitcoin / cryptocurrency trading software, algorithmic trading bots. Visually design your crypto trading bot, leveraging an integrated charting system, data-mining, backtesting, paper trading, and multi-server crypto bot deployments.

Free, open-source crypto trading bot, automated bitcoin / cryptocurrency trading software, algorithmic trading bots. Visually design your crypto trading bot, leveraging an integrated charting system, data-mining, backtesting, paper trading, and multi-server crypto bot deployments.

Superalgos 3.1k Jan 1, 2023
TypeScript with a Borrow Checker. Multi-threaded, Tiny binaries. No GC. Easy to write.

TypeScript with a Borrow Checker. Multi-threaded, Tiny binaries. No GC. Easy to write.

David Alsh 1.4k Dec 19, 2022
Add WebAssembly ESM integration to Vite and support wasm-pack generated modules

Add WebAssembly ESM integration (aka. Webpack's asyncWebAssembly) to Vite and support wasm-pack generated modules

Menci ❤️ 78 Dec 26, 2022
A lightweight jQuery plugin for collapsing and expanding long blocks of text with "Read more" and "Close" links.

Readmore.js V3 alpha I am deprecating the 2.x version of Readmore.js. A new version is coming soon! Check it out and help me test it! Readmore.js A sm

Jed Foster 1.5k Nov 30, 2022
A lightweight, fast and efficient Discord Nitro sniper, giveaway sniper & invite sniper

Discord Sniper (forked from slow/nitro-sniper) A lightweight, fast and efficient Discord Nitro sniper, giveaway sniper & invite sniper. Features Nitro

null 3 Oct 23, 2022
NatsirtMC is a lightweight app allowing you to connect to any Minecraft server without having Minecraft open

NatsirtMC the only way to grind without grinding NatsirtMC is a lightweight app allowing you to connect to any Minecraft server without having Minecra

tristan 3 Dec 26, 2022
The perfect library for adding search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on existing HTML.

List.js Perfect library for adding search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on

Jonny Strömberg 10.9k Jan 1, 2023
Drag and drop library for two-dimensional, resizable and responsive lists

GridList Drag and drop library for a two-dimensional resizable and responsive list of items Demo: http://hootsuite.github.io/grid/ The GridList librar

Hootsuite 3.6k Dec 14, 2022
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings

JavaScript Algorithms and Data Structures This repository contains JavaScript based examples of many popular algorithms and data structures. Each algo

Oleksii Trekhleb 158k Dec 31, 2022
Gmail-like client-side drafts and bit more. Plugin developed to save html forms data to LocalStorage to restore them after browser crashes, tabs closings and other disasters.

Sisyphus Plugin developed to save html forms data to LocalStorage to restore them after browser crashes, tabs closings and other disasters. Descriptio

Alexander Kaupanin 2k Dec 8, 2022