UNPKG

slack-client

Version:
19 lines (14 loc) 379 B
/** * Example for creating and working with the Slack Web API. */ /* eslint no-console:0 */ var WebClient = require('../lib/clients/web/client'); var token = process.env.SLACK_API_TOKEN || ''; var web = new WebClient(token); web.team.info(function teamInfoCb(err, info) { if (err) { console.log('Error:', err); } else { console.log('Team Info:', info); } });