{"id":15465705,"url":"https://github.com/brianegan/redux_dev_tools","last_synced_at":"2025-04-22T10:43:22.124Z","repository":{"id":53620671,"uuid":"112033308","full_name":"brianegan/redux_dev_tools","owner":"brianegan","description":"Time Travel Dev Tools for Dart Redux","archived":false,"fork":false,"pushed_at":"2021-03-20T15:12:54.000Z","size":249,"stargazers_count":9,"open_issues_count":1,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-29T14:21:43.054Z","etag":null,"topics":["dart","redux","redux-devtools"],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/brianegan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2017-11-25T20:44:50.000Z","updated_at":"2024-07-25T21:03:49.000Z","dependencies_parsed_at":"2022-09-18T05:12:02.706Z","dependency_job_id":null,"html_url":"https://github.com/brianegan/redux_dev_tools","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fredux_dev_tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fredux_dev_tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fredux_dev_tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fredux_dev_tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brianegan","download_url":"https://codeload.github.com/brianegan/redux_dev_tools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250222350,"owners_count":21394854,"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":["dart","redux","redux-devtools"],"created_at":"2024-10-02T01:02:48.939Z","updated_at":"2025-04-22T10:43:22.101Z","avatar_url":"https://github.com/brianegan.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# redux_dev_tools\n\n[![Build Status](https://travis-ci.org/brianegan/redux_dev_tools.svg?branch=master)](https://travis-ci.org/brianegan/redux_dev_tools) [![codecov](https://codecov.io/gh/brianegan/redux_dev_tools/branch/master/graph/badge.svg)](https://codecov.io/gh/brianegan/redux_dev_tools)\n\nA [Redux](https://pub.dartlang.org/packages/redux) `Store` with a [Delorean](http://www.imdb.com/title/tt0088763/). \n\nThis library allows you to create a `DevToolsStore` during dev mode in place of a normal [Redux](https://pub.dartlang.org/packages/redux) Store. This `DevToolsStore` will act exactly like a normal Store at first, with one catch: It will allow you to travel back and forth throughout the State of your application!\n\nYou can write your own UI to travel in time, or use one of the existing options for the platform you're working with:\n\n  * Flutter\n    * [flutter_redux_dev_tools](https://pub.dartlang.org/packages/flutter_redux_dev_tools)\n  * Remote (Dart and Flutter)\n    * [redux_remote_devtools](https://pub.dev/packages/redux_remote_devtools)\n    \n## Demo\n\n### Flutter\n\nA simple Flutter app that allows you to Increment and Decrement a counter.\n\n![A screenshot of the Dev Tools in Action](https://gitlab.com/brianegan/redux_dev_tools/raw/master/devtools.gif)\n\n## Usage\n\n```dart\n// Start by creating a simple Reducer, or a complex one. Dealer's choice. :)\nint addOneReducer(int state, action) =\u003e state + 1;\n\n// For production mode, this is how you should create your Store.\nfinal store = Store(addReducer, initialState: 0);\n\n// In Dev Mode, however, if you want to hook up to Time-Traveling \n// Dev Tools, create a `DevToolsStore` instead!\n//\n// It will act exactly like your normal Store, but give you super powers\n// to travel back and forth in time throughout your app States!\n// \n// Remember: By itself this will beef up your Store, but will not provide\n// a UI to Time Travel. See the libraries listed above to learn how to\n// connect your Redux store to a UI! \nfinal store = DevToolsStore(addReducer, initialState: 0);\n```\n\n## Credits\n\nAll of this code was directly inspired by the original [Redux Devtools](https://github.com/gaearon/redux-devtools). \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrianegan%2Fredux_dev_tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrianegan%2Fredux_dev_tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrianegan%2Fredux_dev_tools/lists"}