UNPKG

simple-cw-node

Version:

A simple ChatWork API client for Node.js (UNOFFICIAL)

9 lines (7 loc) 203 B
var cw = require('./lib/chatwork')(); cw.init({ token: process.env.CHATWORK_API_TOKEN }); cw.get('me').done(function (res) { console.log(res.body); }).fail(function (err) { console.log(err) });