An open API service indexing awesome lists of open source software.

https://github.com/truemedia/mindstack-slack

Slack adapter for Mind Stack
https://github.com/truemedia/mindstack-slack

Last synced: 4 months ago
JSON representation

Slack adapter for Mind Stack

Awesome Lists containing this project

README

        

# Mind Stack slack
Slack adapter for Mind Stack

## This is a work in progress

## Installation

NPM
```bash
npm i --save mindstack-slack
```

Yarn
```bash
yarn add mindstack-slack
```

## Usage
Node
```js
const Bot = require('mindstack');
const slack = require('mindstack-slack');

let botInstance = new Bot()
.useAdapter(slack);
```