VueJS RESTful client with reactive features. Vue-Chimera is based on axios http client library.
Overview of features:
- Loading flags
- Binding vue instances to API endpoints
- Reactive endpoints and auto request based on vue instance data
- Auto refreshing data
- Serverside prefetching (Nuxt.js compatible)
- Request cancellation
- Cancel all pending requests on vue instance destroy (like route changes)
- Events
- Lightweight
Using npm:
$ npm install vue-chimera
or
$ yarn add vue-chimera
Using cdn:
<script src="https://unpkg.com/vue-chimera@^3.0.0/dist/vue-chimera.min.js"></script>
To add vue-chimera to your Vue you must use it as a plugin: ECMAScript 6
import Vue from 'vue'
import VueChimera from 'vue-chimera'
Vue.use(VueChimera)
You can use Vue-Chimera with nuxtjs to use it's SSR features so you can easily prefetch the data.
// nuxt.config.js
module.exports = {
modules: [
'vue-chimera/nuxt'
],
chimera: {
// Enables server side prefetch on endpoints which has `auto` property
// true: fetched on server
// false: fetched on client
// 'override': fetched on server and client (overrided by client)
prefetch: true,
prefetchTimeout: 2000 // Server side timeout for prefetch
}
}
All PRs are welcome. Thanks.