# vue-feathers-services

> Plugin to simplify FeathersJS service usage within VueJS components.

Latest version **0.1.0** (published 2016-11-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-feathers-services
pnpm add vue-feathers-services
yarn add vue-feathers-services
bun add vue-feathers-services
```

## 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.1.0 |
| Published | 2016-11-11 |
| First published | 2016-11-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Cody Mercer |
| Maintainers | cklmercer |
| Keywords | Vue, Feathers |

## Links

- npm: https://www.npmjs.com/package/vue-feathers-services
- npm.io page: https://npm.io/package/vue-feathers-services

## Dependencies (2)

- [babel-cli](https://npm.io/package/babel-cli.md) ^6.18.0
- [babel-preset-es2015](https://npm.io/package/babel-preset-es2015.md) ^6.18.0

## Alternatives

- [@fortawesome/react-fontawesome](https://npm.io/package/@fortawesome/react-fontawesome.md) — 2.2M weekly downloads
- [roboto-fontface](https://npm.io/package/roboto-fontface.md) — 196.0K weekly downloads
- [@react-native-vector-icons/common](https://npm.io/package/@react-native-vector-icons/common.md) — 150.4K weekly downloads
- [@procore/core-icons](https://npm.io/package/@procore/core-icons.md) — 4.6K weekly downloads
- [@react-md/material-icons](https://npm.io/package/@react-md/material-icons.md) — 1.6K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2016-11-11

## README

# vue-feathers-services

VueJS plugin to simplify FeathersJS service usage within components.

## Installation

*Install via NPM (or better yet.. use Yarn)*
```
npm install vue-feathers-services
```

*Use with project*
```
import Vue from 'vue'
import VueFeathers from 'vue-feathers-services'
// Import your feathers stuffs

// Assuming 'app' is the name of the configured feathers client instance

Vue.use(VueFeathers, app)
```

## Usage
```
new Vue({
    services: {
        userService: 'users'
    },

    mounted() {
        this.userService.on('created', user => console.log('User Created:', user))
    },

    methods: {
        registerUser(email, password) {
            this.userService.create({ email, password })
        }
    }
});
```

## License
[MIT](https://opensource.org/licenses/MIT)

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