Botpress是一个用Javascript编写的bot创建工具。它提供非常丰富的开源模块,任何人都可以创建和重用其他人的模块。
安装Botpress要求 node (4.2版本以上)并使用 npm :
npm install -g botpress创建机器人创建一个机器人很简单,你只需要在一个空的目录下运行 botpressinit
mkdir my-bot && cd my-botbotpress init创建完成后,运行 botpressstart 启动它:
botpress start这将提供本地的Web界面 https://localhost:3000
评论