Home

Awesome

Cleverbot-node

A node.js client for talking to cleverbot.

Basic usage:

In order to add your key to your bot, you can use the configure method. API keys can be obtained from the Cleverbot API Sign Up Page.

    var Cleverbot = require('cleverbot-node');
    cleverbot = new Cleverbot;
    cleverbot.configure({botapi: "IAMKEY"});
    cleverbot.write(cleverMessage, function (response) {
       console.log(response.output);
    });

Changes from 0.2.x

Known issues

See 'examples' for more usage.