2 مستودعات
Transforming raw form input data into standardized formats before storing them in the state.
Distinct from Data Value Normalization: Focuses on the transformation of UI input values rather than database record normalization.
Explore 2 awesome GitHub repositories matching data & databases · Form Value Normalization. Refine with filters or upvote what's useful.
redux-form is a library for managing HTML form state and validation within a Redux store using React components. It functions as a state manager that synchronizes input values and interaction metadata to maintain a single source of truth in a global state container. The project provides mechanisms for orchestrating dynamic arrays of input fields that can be added, removed, or reordered in real time. It also includes a system for splitting complex data entry into a sequence of pages to create multi-step form wizards. Additional capabilities cover client-side data validation through synchronou
Transforms raw input data into a specific format before saving the values to the state store.
Formidable is a streaming multipart form parser and file upload handler for Node.js. It provides the utility to process incoming HTTP requests containing a mix of text fields and files, converting them into structured data. The project is designed as a multipart data streamer that can pipe incoming uploads directly to the local filesystem or cloud storage providers. It includes a cloud storage upload bridge to route streams to services such as AWS S3, Azure, or GCP without requiring intermediate local disk storage. The tool incorporates server-side file validation and security controls, incl
Transforms raw form input values into standardized formats like booleans or arrays.