{"id":44212686,"url":"https://github.com/code-y/redux-fluent","last_synced_at":"2026-02-10T01:04:47.254Z","repository":{"id":34246177,"uuid":"102487532","full_name":"code-y/redux-fluent","owner":"code-y","description":"A Practical and Functional Redux Utility","archived":false,"fork":false,"pushed_at":"2023-06-09T08:15:28.000Z","size":20142,"stargazers_count":25,"open_issues_count":27,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-02T04:01:05.777Z","etag":null,"topics":["flux-standard-action","fsa-actions","functional-programming","ramda","react","redux","typescript","typescript-definitions","typings"],"latest_commit_sha":null,"homepage":"https://code-y.github.io/redux-fluent","language":"TypeScript","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/code-y.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2017-09-05T13:54:03.000Z","updated_at":"2023-06-09T08:15:14.000Z","dependencies_parsed_at":"2023-01-15T05:45:41.101Z","dependency_job_id":null,"html_url":"https://github.com/code-y/redux-fluent","commit_stats":null,"previous_names":[],"tags_count":77,"template":false,"template_full_name":null,"purl":"pkg:github/code-y/redux-fluent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-y%2Fredux-fluent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-y%2Fredux-fluent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-y%2Fredux-fluent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-y%2Fredux-fluent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code-y","download_url":"https://codeload.github.com/code-y/redux-fluent/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-y%2Fredux-fluent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29287738,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T21:57:15.303Z","status":"ssl_error","status_checked_at":"2026-02-09T21:57:11.537Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["flux-standard-action","fsa-actions","functional-programming","ramda","react","redux","typescript","typescript-definitions","typings"],"created_at":"2026-02-10T01:04:43.675Z","updated_at":"2026-02-10T01:04:47.243Z","avatar_url":"https://github.com/code-y.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n![redux-fluent](https://github.com/Code-Y/redux-fluent/blob/master/gitbook/redux-fluent-logo.jpg?raw=true)\n\n[![Build Status](https://github.com/Code-Y/redux-fluent/workflows/Build/badge.svg)](https://github.com/Code-Y/redux-fluent/actions?query=workflow%3ABuild)\n[![npm version](https://img.shields.io/npm/v/redux-fluent.svg)](https://www.npmjs.com/package/redux-fluent)\n[![License](https://img.shields.io/npm/l/redux-fluent.svg)](https://github.com/Code-Y/redux-fluent/blob/master/LICENSE)\n[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)\n\n[![npm downloads](https://img.shields.io/npm/dm/redux-fluent.svg)](https://www.npmjs.com/package/redux-fluent)\n[![Maintainability](https://api.codeclimate.com/v1/badges/2e98502fb6072892995d/maintainability)](https://codeclimate.com/github/Code-Y/redux-fluent/maintainability)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/2e98502fb6072892995d/test_coverage)](https://codeclimate.com/github/Code-Y/redux-fluent/test_coverage)\n\n#### ....................:::::::::::::::::::....................\n#### [...::: TRY OUR COUNTER REDUCER EXAMPLE ON CODESANDBOX :::...](https://codesandbox.io/s/redux-fluent-the-counter-reducer-enoc2?fontsize=14\u0026hidenavigation=1\u0026module=%2Fsrc%2Fstore%2Fcounter%2Fcounter.reducers.ts\u0026theme=dark)\n#### ....................:::::::::::::::::::....................\n\u003chr /\u003e\n\u003c/div\u003e\n\n### Installation\n\n```\nyarn add redux-fluent redux flux-standard-action\n```\n\n### Documentation\n\n- https://code-y.github.io/redux-fluent\n\n### Getting Started\n\n```typescript\nimport { createStore } from 'redux';\nimport { createAction, createReducer, ofType } from 'redux-fluent';\n\nconst increment = createAction('increment');\nconst decrement = createAction('decrement');\n\nconst counter = createReducer('counter')\n  .actions(\n    ofType(increment).map(state =\u003e state + 1),\n    ofType(decrement).map(state =\u003e state - 1),\n  )\n  .default(() =\u003e 0);\n\nconst store = createStore(counter);\n\nstore.dispatch(increment());\n```\n\n### Distribution\n\n- https://www.npmjs.com/package/redux-fluent\n\n### Stats\n\n- `3.2 kB` - https://bundlephobia.com/result?p=redux-fluent\n\n### Discussion\n\n- [![Gitter](https://badges.gitter.im/redux-fluent/community.svg)](https://gitter.im/redux-fluent/community?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n- [StackOverflow](https://stackoverflow.com/questions/tagged/redux-fluent)\n- [Github Issues](https://github.com/Code-Y/redux-fluent/issues)\n- [Submit a Pull Request](https://github.com/Code-Y/redux-fluent/pulls)\n\n### License\n\n[MIT](https://github.com/Code-Y/redux-fluent/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-y%2Fredux-fluent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode-y%2Fredux-fluent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-y%2Fredux-fluent/lists"}