2017-09-14 05:20:26 +00:00
|
|
|
# slackme
|
|
|
|
API abstraction for mojoio
|
|
|
|
|
|
|
|
## Availabililty
|
|
|
|
[![npm](https://mojoio.gitlab.io/assets/repo-button-npm.svg)](https://www.npmjs.com/package/slackme)
|
|
|
|
[![git](https://mojoio.gitlab.io/assets/repo-button-git.svg)](https://GitLab.com/mojoio/slackme)
|
|
|
|
[![git](https://mojoio.gitlab.io/assets/repo-button-mirror.svg)](https://github.com/mojoio/slackme)
|
|
|
|
[![docs](https://mojoio.gitlab.io/assets/repo-button-docs.svg)](https://mojoio.gitlab.io/slackme/)
|
|
|
|
|
|
|
|
## Status for master
|
|
|
|
[![build status](https://GitLab.com/mojoio/slackme/badges/master/build.svg)](https://GitLab.com/mojoio/slackme/commits/master)
|
|
|
|
[![coverage report](https://GitLab.com/mojoio/slackme/badges/master/coverage.svg)](https://GitLab.com/mojoio/slackme/commits/master)
|
|
|
|
[![npm downloads per month](https://img.shields.io/npm/dm/slackme.svg)](https://www.npmjs.com/package/slackme)
|
|
|
|
[![Dependency Status](https://david-dm.org/mojoio/slackme.svg)](https://david-dm.org/mojoio/slackme)
|
|
|
|
[![bitHound Dependencies](https://www.bithound.io/github/mojoio/slackme/badges/dependencies.svg)](https://www.bithound.io/github/mojoio/slackme/master/dependencies/npm)
|
|
|
|
[![bitHound Code](https://www.bithound.io/github/mojoio/slackme/badges/code.svg)](https://www.bithound.io/github/mojoio/slackme)
|
2018-01-10 21:10:09 +00:00
|
|
|
[![Known Vulnerabilities](https://snyk.io/test/npm/slackme/badge.svg)](https://snyk.io/test/npm/slackme)
|
2017-09-14 05:20:26 +00:00
|
|
|
[![TypeScript](https://img.shields.io/badge/TypeScript-2.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
|
|
[![node](https://img.shields.io/badge/node->=%206.x.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
2018-01-10 21:10:09 +00:00
|
|
|
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://standardjs.com/)
|
2017-09-14 05:20:26 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
Use TypeScript for best in class instellisense.
|
|
|
|
|
2018-01-10 20:45:25 +00:00
|
|
|
```javascript
|
|
|
|
import * as slackme from 'slackme'
|
|
|
|
|
|
|
|
// First setup the hook
|
|
|
|
const mySlackme = new Slackme('https://some.slack.webhook.url')
|
|
|
|
mySlackme.sendMessage:{{
|
|
|
|
// MessageOptions here
|
|
|
|
}, 'myAwesomeChannel'}
|
|
|
|
```
|
|
|
|
|
|
|
|
The message interface looks like this:
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
interface IAttachmentField {
|
|
|
|
title: string
|
|
|
|
value: string
|
|
|
|
short?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IMessageOptions {
|
|
|
|
/**
|
|
|
|
* "Required plain-text summary of the attachment."
|
|
|
|
*/
|
|
|
|
fallback?: string,
|
|
|
|
/**
|
|
|
|
* a side color
|
|
|
|
*/
|
|
|
|
color?: string,
|
|
|
|
/**
|
|
|
|
* a message to show above
|
|
|
|
*/
|
|
|
|
pretext?: string,
|
|
|
|
/**
|
|
|
|
* author name of the attachment
|
|
|
|
*/
|
|
|
|
author_name?: string,
|
|
|
|
/**
|
|
|
|
* a link to the author
|
|
|
|
*/
|
|
|
|
author_link?: string,
|
|
|
|
/**
|
|
|
|
* a string to the author
|
|
|
|
*/
|
|
|
|
author_icon?: string,
|
|
|
|
/**
|
|
|
|
* a title for the attachment
|
|
|
|
*/
|
|
|
|
title?: string,
|
|
|
|
/**
|
|
|
|
* a link for the title
|
|
|
|
*/
|
|
|
|
title_link?: string,
|
|
|
|
/**
|
|
|
|
* the main text of the message
|
|
|
|
*/
|
|
|
|
text?: string,
|
|
|
|
fields?: IAttachmentField[],
|
|
|
|
image_url?: string,
|
|
|
|
thumb_url?: string,
|
|
|
|
footer?: string,
|
|
|
|
footer_icon?: string,
|
|
|
|
/**
|
|
|
|
* timestamp as epoch time
|
|
|
|
*/
|
|
|
|
ts?: number
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Alternatively, there is the option of specifying a SlackMessage class
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
|
|
|
const mySlackMessage = new SlackMessage({ /* message options here } */, mySlackme)
|
|
|
|
mySlackMessage.title = 'new Title' // modify message options
|
|
|
|
mySlackMessage.sendToRoom('general')
|
|
|
|
mySlackMessage.title = 'another Title'
|
|
|
|
mySlackMessage.sendToRoom('anotherroom')
|
|
|
|
```
|
|
|
|
|
2017-09-14 05:20:26 +00:00
|
|
|
For further information read the linked docs at the top of this README.
|
|
|
|
|
|
|
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
|
|
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
|
|
|
|
|
|
|
[![repo-footer](https://mojoio.gitlab.io/assets/repo-footer.svg)](https://mojo.io)
|