# vue-chat-client

> This is a chat client for Vue.js

Latest version **0.0.10** (published 2018-03-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-chat-client
pnpm add vue-chat-client
yarn add vue-chat-client
bun add vue-chat-client
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.10 |
| Published | 2018-03-26 |
| First published | 2018-03-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 6.0.0 |
| Dependencies | 3 |
| Unpacked size | 26.2 KB |
| Known vulnerabilities | 0 (+26 in 3 direct dependencies) |
| Install scripts | no |
| Author | trinktmage |
| Maintainers | trinketmage |

## Links

- npm: https://www.npmjs.com/package/vue-chat-client
- npm.io page: https://npm.io/package/vue-chat-client

## Dependencies (3)

- [vue](https://npm.io/package/vue.md) ^2.5.2
- [gsap](https://npm.io/package/gsap.md) ^1.20.4
- [axios](https://npm.io/package/axios.md) ^0.18.0

## Recent versions

- 0.0.10 (latest) — 2018-03-26
- 0.0.9 — 2018-03-26
- 0.0.8 — 2018-03-26
- 0.0.7 — 2018-03-26
- 0.0.6 — 2018-03-26
- 0.0.5 — 2018-03-26
- 0.0.4 — 2018-03-19
- 0.0.3 — 2018-03-19
- 0.0.2 — 2018-03-19
- 0.0.1 — 2018-03-19

## README

<p align="center"><a href="https://vuejs.org" target="_blank" rel="noopener noreferrer"><img width="100" src="https://vuejs.org/images/logo.png" alt="Vue logo"></a></p>

# vue-chat-client

<p align="center">
  <a href="https://npmcharts.com/compare/vue-chat-client?minimal=true"><img src="https://img.shields.io/npm/dm/vue-chat-client.svg" alt="Downloads"></a>
  <a href="https://www.npmjs.com/package/vue-chat-client"><img src="https://img.shields.io/npm/v/vue-chat-client.svg" alt="Version"></a>
  <a href="https://www.npmjs.com/package/vue-chat-client"><img src="https://img.shields.io/npm/l/vue-chat-client.svg" alt="License"></a>
  <br>
</p>

> This is a chat client for Vue.js

### Installation

#### NPM + ES2015

``` bash
npm install vue-chat-client --save
```

``` js
import Vue from 'vue'
import ChatClient from 'vue-chat-client'
Vue.component('chat-client', ChatClient)
```

### Usage

``` js
export default {
  data() {
    return: {
      feeds: [
        {
          type: 'message',
          uid: 'UID',
          text: 'Example message'
        }
      ]
    }
  }
}
```

``` html
<!-- bind to it normally in templates -->
<chat-client :feeds="feeds"/>
```

## Development Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report
```

For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).


## License

[MIT](http://opensource.org/licenses/MIT)

Copyright (c) 2018-present, Trinketmage

---
_Source: https://npm.io/package/vue-chat-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
