README
Cleverbot
Install
npm install cleverbot-api-free
Usage
const cleverbot = require("cleverbot-api-free");
const client = new cleverbot();
client.send(
"message",
async response => {
console.log(response);
},
);
Free cleverbot wrapper
<script type="module">
import cleverbotApiFree from 'https://cdn.skypack.dev/cleverbot-api-free';
</script>
npm install cleverbot-api-free
const cleverbot = require("cleverbot-api-free");
const client = new cleverbot();
client.send(
"message",
async response => {
console.log(response);
},
);