Package Exports
- node-slack-upload
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 (node-slack-upload) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-slack-upload
A node module for uploading files to slack using multipart or string
Slack is a messaging platform that is easy to integrate with. This module should be useful for for uploading files to Slack!
Install
node-slack-upload is available via npm:
npm install node-slack-upload
Usage
Get your Slack api token from here.
var Slack = require('node-slack-upload');
var slack = new Slack(token);
To upload a file from the filesystem as a post
slack.uploadFile({
file: fs.createReadStream(path.join(__dirname, '..', 'README.md')),
filetype: 'post',
title: 'README',
initialComment: 'my comment',
channels: 'XXXXX'
}, function(err, data) {
if (err) {
console.error(err);
}
else {
console.log('Uploaded file details: ', data);
}
});
To upload a file from a string as a post
slack.uploadFile({
content: 'My file contents!',
filetype: 'post',
title: 'README',
initialComment: 'my comment',
channels: 'XXXXX'
}, function(err, data) {
if (err) {
console.error(err);
}
else {
console.log('Uploaded file details: ', data);
}
});
For more details please refer https://api.slack.com/methods/files.upload