Package Exports
- @jobscale/slack
- @jobscale/slack/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jobscale/slack) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@jobscale/slack
install
npm i @jobscale/slackexamples
send slack channel
const { Slack } = require('@jobscale/slack');
const env = require('./env.json');
const params = { text: 'jest test send' };
return new Slack(env).send(params)
.then(res => {
logger.info(res);
});clear slack channel
const { Slack } = require('@jobscale/slack');
const env = require('./env.json');
return new Slack(env).clearChannel()
.then(res => {
logger.info(res);
});