A redux reducer-generator which builds a redux-reducer from a redux-reducer.
Reduce a list of values using promises into a promise for a value
A JavaScript library for efficient immutable updates
No description provided.
append AST into power-assert context
A Redux binding for React Router v4 and v5
reducer for the Shift AST format
React useReducer with async actions
Sequence your effects naturally and purely by returning them from your reducers.
Publishing createReducer from https://redux.js.org/recipes/reducing-boilerplate#generating-reducers
Reduce any JSON value by traversing depth first and visiting each node
[](https://github.com/conorhastings/react-syntax-highlighter/actions) [
Redux middleware for generator coroutines.
Redux DevTools instrumentation
higher-order reducer to reset the redux state on certain actions
TypeScript definitions for redux-recycle
Save and load Redux state to and from LocalStorage.
This package contains utilities that can help create Redux features.
redux reducer utilities
Reduce size of lambda to its dependencies
reducer tester
Relay Redux actions to remote Redux DevTools.
Extends React's useReducer() hook so that the dispatcher supports thunks.
Wrappers for Redux DevTools Extension.
fast_forward is a small library designed to do two things: * Allow easy delegation of all missing methods to an accessor/instance variable * Generate methods on-the-fly after first invocation of a delegated method to eliminate the need to search the object's ancestors and use method_missing on subsequent invocations
Retrofits and generates valid puppet rspec test code to existing modules
Using paperclip to generate images from sensible attributes like e-mails and telephone numbers, in order to reduce crawler's success
Code template generator for Rails and Merb that DRYs up view code with partials and utilizes helpers as presenters to reduce ruby code in your view.
Improve Xcode compilation speed based on Header Maps.
MassiveSitemap - build huge sitemaps painfree. Differential updates keeps generation time short and reduces load on DB. It's heavealy inspired by BigSitemaps and offers compatiable API
Somatics3 is a collection of generators and extensions which reduces the effort of building admin panel for rails 3 resources.
Conyard is a Ruby experiment in generating source code for use by C, C++, and Objective-C projects. It is designed to reduce the amount of typing (and therefore errors) introduced by sleep-deprived programmers.
Generating HTML tables of data in the views of your Rails application is not very DRY even for the simpler of cases. Cheveret allows you to more clearly separate logic and templating and reduce the amount of code in your views.
Lazily loads large columns on demand. By default, does this for all TEXT (:text) and BLOB (:binary) columns, but a list of specific columns to load on demand can be given. This is useful to reduce the memory taken by Rails when loading a number of records that have large columns if those particular columns are actually not required most of the time. In this situation it can also greatly reduce the database query time because loading large BLOB/TEXT columns generally means seeking to other database pages since they are not stored wholly in the record's page itself. Although this plugin is mainly used for BLOB and TEXT columns, it will actually work on all types - and is just as useful for large string fields etc.
Cubicle provides a dsl and aggregation caching framework for automating the generation, execution and caching of map reduce queries when using MongoDB in Ruby. Cubicle also includes a MongoMapper plugin for quickly performing ad-hoc, multi-level group-by queries against a MongoMapper model.
Reductions is an addition to Enumerable that returns an array containing all of the intermediate values that would be generated in a call to Enumerable#reduce. (5..10).reductions(:+) # => [5, 11, 18, 26, 35, 45]