redux-storage-engine-cookies
JSON →A cookie-based storage engine for redux-storage, version 1.0.0. It stores the entire Redux state in a single cookie via document.cookie. This engine is synchronous and blocking, with severe size limits (e.g., IE total cookie limit of 4096 bytes). It uses js-cookie for cookie handling and requires a Promise polyfill for IE<=11. Compared to other redux-storage engines (e.g., localStorage), cookies have cross-subdomain support but are far more restrictive in storage capacity.