BearyChat API 客户端(适用于 Node 和浏览器环境)
$ npm i bearychat
假如你使用 yarn
:
$ yarn add bearychat
直接使用 API:
const bearychat = require('bearychat');
bearychat.rtm.start({token: '<your token>'})
.then(resp => resp.json())
.then(data => {console.log(data)});
使用 HTTPClient:
const HTTPClient = require('bearychat').HTTPClient;
const client = new HTTPClient('<your token>');
client.rtm.start()
.then(data => {console.log(data)});
注意:使用 HTTPClient 不需要手动将请求转换为 JSON.
$ npm run test
欢迎给 bearychat.js 添砖加瓦,你可以在 CONTRIBUTING 中找到相关说明。
MIT