0.1.2 • Published 8 years ago

slack-api-client v0.1.2

Weekly downloads
83
License
MIT
Repository
github
Last release
8 years ago

slack-api-client

NPM Version Build Status Package downloads

var SlackClient = require('slack-api-client');

var slack = new SlackClient('token');

slack.api.chat.postMessage({
  channel: '#notifications',
  username: 'Slack Client',
  text: 'Hello world!'
}, function (err, res) {
  if (err) { throw err; }
  console.log(res);
});

Installation

$ npm install slack-api-client

API and documentation

More information at Slack API Documentation

Running Tests

To run the test suite, first invoke the following command within the repo, installing the development dependencies:

$ npm install

Then run the tests:

$ npm test

License

MIT

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago