chatwork-api
This package just wraps the chatwork API.Usage
Install
With npm:npm install chatwork-api-wrap
With yarn:
yarn add chatwork-api-wrap
SourceCode
const chatwork = require('chatwork-api-wrap');
chatwork.me.get('YourChatworkToken')
.then((body) => console.log(body))
.catch((error) => console.error(error));