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

https://github.com/devforth/slakio


https://github.com/devforth/slakio

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# slakio

Open-source web live chat with slack integration

Installation
============

With npm
--------

If you have npm-based project (e.g. SPA like React/Vue) you can run:

```bash
npm install slakio --save
```

Then in your code

```js
import slakio from 'slakio'
...
slakio({
slakio_server_domain: 'https://slakio.mycomp.com'
})
```

By including script
-------------------

You can download latest `slakio-*.min.js` here https://github.com/devforth/slakio/releases/

Insert `` e.g to `<head>` section of your HTML file:

```html
<script src="/xxx/slakio-x.x.x.min.js">
```

Then in your code:

```html

slakio(<options>)

```