{"id":15566939,"url":"https://github.com/chimera-js/vue-chimera","last_synced_at":"2025-04-10T01:13:39.527Z","repository":{"id":33126732,"uuid":"143295925","full_name":"chimera-js/vue-chimera","owner":"chimera-js","description":"VueJS reactive RESTful API","archived":false,"fork":false,"pushed_at":"2022-12-10T17:10:26.000Z","size":7471,"stargazers_count":171,"open_issues_count":28,"forks_count":15,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-10T01:13:33.025Z","etag":null,"topics":["reactive","rest","rest-client","restful","vue","vue-plugin","vuejs","vuejs2"],"latest_commit_sha":null,"homepage":"https://vue-chimera.netlify.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chimera-js.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-02T13:06:12.000Z","updated_at":"2024-04-28T04:11:57.000Z","dependencies_parsed_at":"2023-01-14T23:45:33.065Z","dependency_job_id":null,"html_url":"https://github.com/chimera-js/vue-chimera","commit_stats":null,"previous_names":["sasanfarrokh/vue-chimera"],"tags_count":43,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chimera-js%2Fvue-chimera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chimera-js%2Fvue-chimera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chimera-js%2Fvue-chimera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chimera-js%2Fvue-chimera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chimera-js","download_url":"https://codeload.github.com/chimera-js/vue-chimera/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248137891,"owners_count":21053775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["reactive","rest","rest-client","restful","vue","vue-plugin","vuejs","vuejs2"],"created_at":"2024-10-02T17:08:56.620Z","updated_at":"2025-04-10T01:13:39.510Z","avatar_url":"https://github.com/chimera-js.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Utilities"],"sub_categories":["HTTP Requests"],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/chimera-js/vue-chimera\"\u003e\n        \u003cimg src=\"https://github.com/chimera-js/vue-chimera/raw/master/VueChimeraLogo.png\" width=\"300px\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003eVue Chimera\u003c/h1\u003e\n\n[![vuejs](https://img.shields.io/badge/vue.js-2.x-green.svg)](https://vuejs.org)\n[![circle ci](https://img.shields.io/circleci/project/github/chimera-js/vue-chimera/master.svg)](https://circleci.com/gh/chimera-js/vue-chimera)\n[![npm version](https://img.shields.io/npm/v/vue-chimera.svg)](https://www.npmjs.org/package/vue-chimera)\n[![npm downloads](https://img.shields.io/npm/dt/vue-chimera.svg)](http://npm-stat.com/charts.html?package=vue-chimera)\n[![npm bundle size (minified + gzip)](https://img.shields.io/bundlephobia/minzip/vue-chimera/3.0.2)](https://bundlephobia.com/result?p=vue-chimera@^3.0.0)\n[![codecov](https://codecov.io/gh/chimera-js/vue-chimera/branch/master/graph/badge.svg)](https://codecov.io/gh/chimera-js/vue-chimera)\n\nVueJS RESTful client with reactive features.\nVue-Chimera is based on [axios](https://github.com/axios/axios) http client library.\n\nOverview of features: \n- Loading flags\n- Binding vue instances to API endpoints\n- Reactive endpoints and auto request based on vue instance data\n- Auto refreshing data\n- Serverside prefetching (Nuxt.js compatible)\n- Request cancellation\n- Cancel all pending requests on vue instance destroy (like route changes)\n- Events\n- Lightweight\n\n## Demo\n\n[Demo](https://vue-chimera.netlify.com/demo)\n\n## Documents\n\n[Full Documentation](https://vue-chimera.netlify.com)\n\n## Installing\n\nUsing npm:\n\n```bash\n$ npm install vue-chimera\nor\n$ yarn add vue-chimera\n```\n\nUsing cdn:\n```html\n\u003cscript src=\"https://unpkg.com/vue-chimera@^3.0.0/dist/vue-chimera.min.js\"\u003e\u003c/script\u003e\n```\n\n## Getting started\n\nTo add **vue-chimera** to your Vue you must use it as a plugin:\n*ECMAScript 6*\n```javascript\nimport Vue from 'vue'\nimport VueChimera from 'vue-chimera'\n\nVue.use(VueChimera)\n\n```\n\n## Using with Nuxt.js\nYou can use Vue-Chimera with nuxtjs to use it's SSR features so you can easily prefetch the data.\n```javascript\n// nuxt.config.js\n\nmodule.exports = {\n  \n  modules: [\n    'vue-chimera/nuxt'\n  ],\n  \n  chimera: {\n    // Enables server side prefetch on endpoints which has `auto` property\n    // true: fetched on server\n    // false: fetched on client\n    // 'override': fetched on server and client (overrided by client)\n    prefetch: true,\n    \n    prefetchTimeout: 2000 // Server side timeout for prefetch\n  }\n  \n}\n```\n\n## Maintainer\n\u003cp\u003e\n\u003ca href=\"https://github.com/SasanFarrokh\" target=\"_blank\" rel=\"noopener noreferrer\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/20913428?s=460\u0026v=4\" width=\"200\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Contribution\nAll PRs are welcome.\nThanks.\n\n## License\n[MIT](https://github.com/chimera-js/vue-chimera/blob/master/LICENSE.MD)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchimera-js%2Fvue-chimera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchimera-js%2Fvue-chimera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchimera-js%2Fvue-chimera/lists"}