{"id":13511368,"url":"https://github.com/vuejs/vuex-observable","last_synced_at":"2025-09-30T04:32:03.815Z","repository":{"id":65974465,"uuid":"75052560","full_name":"vuejs/vuex-observable","owner":"vuejs","description":"Consume Vuex actions as Observables using RxJS 5","archived":true,"fork":false,"pushed_at":"2018-12-25T22:59:43.000Z","size":6,"stargazers_count":157,"open_issues_count":3,"forks_count":18,"subscribers_count":47,"default_branch":"master","last_synced_at":"2025-09-21T00:40:14.872Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/vuejs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-29T06:55:19.000Z","updated_at":"2025-05-29T16:57:42.000Z","dependencies_parsed_at":"2023-02-19T17:50:14.458Z","dependency_job_id":null,"html_url":"https://github.com/vuejs/vuex-observable","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vuejs/vuex-observable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuejs%2Fvuex-observable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuejs%2Fvuex-observable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuejs%2Fvuex-observable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuejs%2Fvuex-observable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vuejs","download_url":"https://codeload.github.com/vuejs/vuex-observable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vuejs%2Fvuex-observable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277632338,"owners_count":25850732,"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","status":"online","status_checked_at":"2025-09-30T02:00:09.208Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-08-01T03:00:48.483Z","updated_at":"2025-09-30T04:32:03.542Z","avatar_url":"https://github.com/vuejs.png","language":"JavaScript","funding_links":[],"categories":["vue","Libraries and Plugins"],"sub_categories":["Other"],"readme":"# THIS REPOSITORY IS DEPRECATED\n\n## vuex-observable\n\n\u003e Proof of Concept, DO NOT USE YET\n\nConsume Vuex actions as Observables using RxJS 5, inspired by [redux-observable](https://github.com/redux-observable/redux-observable).\n\n## Usage\n\n``` js\nimport Vue from 'vue'\nimport Vuex from 'vuex'\nimport { observableAction } from 'vuex-observable'\nimport 'rxjs/add/operator/delay'\n\nVue.use(Vuex)\n\nconst store = new Vuex.Store({\n  state: {\n    pinging: false\n  },\n  mutations: {\n    ping: state =\u003e state.pinging = true,\n    pong: state =\u003e state.pinging = false\n  },\n  actions: {\n    ping: observableAction((action$, { commit }) =\u003e {\n      action$.subscribe(() =\u003e commit('ping'))\n      action$.delay(1000).subscribe(() =\u003e commit('pong'))\n    })\n  }\n})\n```\n\n## TODOs\n\n- Working with multiple actions as source\n- Adaptors\n- Cancellation\n- HMR support\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvuejs%2Fvuex-observable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvuejs%2Fvuex-observable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvuejs%2Fvuex-observable/lists"}