A utility library for building large Redux applications using vertically separated features. Current version 2.1.0 provides action type namespacing to prevent naming collisions, with key exports like `createTypes` and `createAction`. It is a derivative of redux-actions but removes Symbol support for broader compatibility. The library is stable with infrequent releases. It differs from redux-actions by enforcing string action types and adding a namespace mechanism.
npm install redux-verticalNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create namespaced action types and actions with createTypes and createAction.
Use strings only for action types. Do not pass Symbol values to createTypes or createAction.
Use array syntax: createTypes('ns', ['type1', 'type2'])Use named imports like `import { createTypes } from 'redux-vertical'`.Change to `import { createTypes } from 'redux-vertical'`.Ensure action types are strings and use createAction to generate payload correctly.
Pass an array of strings as the second argument: createTypes('ns', ['type1','type2'])No dependency data recorded yet.