0.1.1 • Published 5 years ago
zippybot v0.1.1
zippy.js
An experimental abstraction layer for chatbots on the Zipwhip platform
This will be the open-source framework bot developers use.
Ping-Pong bot
const Zippy = require("zippy");
new Zippy("appId", "appSecret", message => {
if (message == "ping") {
return "pong";
}
}).start();