1.1.0 • Published 3 years ago

chatbot-zero v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Lightweight module for the cleverbot API implementation free of cost.

Join My Discord Server

Credits:

Promise Based!

const zero = require("chatbot-zero");
zero.responseFetch("Hello").then((reply) => {
  console.log(reply);
  //Do your stuffs with the reply
});

Async / Await

const zero = require("chatbot-zero");
async function main() {
  const reply = await zero.responseFetch("Sup Mate!");

  console.log(reply);
  //Do your stuff with reply
}
main();
1.1.0

3 years ago

1.0.2

3 years ago

1.0.1-devy

3 years ago

1.0.1-devx

3 years ago

1.0.1-dev

3 years ago

1.0.1

3 years ago

1.0.0-dev

3 years ago

1.0.0

3 years ago