https://github.com/devforth/slakio
https://github.com/devforth/slakio
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devforth/slakio
- Owner: devforth
- Created: 2020-03-03T09:48:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T10:56:51.000Z (almost 6 years ago)
- Last Synced: 2025-02-25T18:42:43.568Z (10 months ago)
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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>)
```