KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
cleverbot-node
★ 62
Open GitHub ↗
Cleverbot client in node.js
Download README (.md)
Explore Similar Repositories
gfw-msys1-sdk
:
This is an Inno Setup based wrapper around mingw-get which installs a development environment based on MSYS1 for building Git for Windows using GCC.
flow.js
:
synchron, asynchron control flow javascript library
dotfiles
:
My $HOME
samplecat
:
SampleCat is a a program for cataloguing and auditioning audio samples.
emacs-slim
:
Syntax highlighting for Slim
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
cleverbot-node
?
Download (.md)
# 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](http://cleverbot.com/api). ``` 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 * API Key is now required * `Cleverbot.prepare` call is no longer needed. It is now a noop for backwards compatibility * The output of the bot is now in the `output` attribute of the response object. It is copied to `message` for backwards compatibility ### Known issues * Cleverbot API sometimes returns an empty response attribute See 'examples' for more usage.