![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@crabas0npm2/autem-eveniet-maiores
Advanced tools
[![npm version](https://badge.fury.io/js/%40americanexpress%2Fvitruvius.svg)](https://badge.fury.io/js/%40americanexpress%2Fvitruvius) ![Health Check](https://github.com/crabas0npm2/autem-eveniet-maiores/workflows/Health%20Check/badge.svg)
Vitruvius extends redux's combineReducers
to allow developers to include a
buildInitialState
method on their reducer. This allows for the passing of
locals to build the initial state that wouldn't normally be available to a
reducer when setting its initial state. For instance, one could pass some data
from the request object.
Want to get paid for your contributions to
vitruvius
? Send your resume to oneamex.careers@aexp.com
$ npm install --save @crabas0npm2/autem-eveniet-maiores
Below is an example of a reducer implementing a buildInitialState
method and
an example of vitruvius being implemented.
import { Map } from 'immutable';
export const SOME_ACTION = 'SOME_ACTION';
const buildInitialState = ({ data } = {}) => new Map({ foo: data || 'bar' });
export default function reducer(state = buildInitialState(), action) {
switch (action.type) {
case SOME_ACTION:
return state.set('foo', action.data);
default:
return state;
}
}
reducer.buildInitialState = buildInitialState;
TIP: To extend
combineReducers
fromredux-immutable
instead ofredux
import from@crabas0npm2/autem-eveniet-maiores/immutable
.
import vitruvius from '@crabas0npm2/autem-eveniet-maiores';
const reducer = vitruvius({
stuff: stuffReducer,
things: thingsReducer,
...otherReducers,
});
const store = createStore(reducer, reducer.buildInitialState(locals), enhancer);
We welcome Your interest in the American Express Open Source Community on Github. Any Contributor to any Open Source Project managed by the American Express Open Source Community must accept and sign an Agreement indicating agreement to the terms below. Except for the rights granted in this Agreement to American Express and to recipients of software distributed by American Express, You reserve all right, title, and interest, if any, in and to Your Contributions. Please fill out the Agreement.
Any contributions made under this project will be governed by the Apache License 2.0.
This project adheres to the American Express Community Guidelines. By participating, you are expected to honor these guidelines.
FAQs
[![npm version](https://badge.fury.io/js/%40americanexpress%2Fvitruvius.svg)](https://badge.fury.io/js/%40americanexpress%2Fvitruvius) ![Health Check](https://github.com/crabas0npm2/autem-eveniet-maiores/workflows/Health%20Check/badge.svg)
The npm package @crabas0npm2/autem-eveniet-maiores receives a total of 0 weekly downloads. As such, @crabas0npm2/autem-eveniet-maiores popularity was classified as not popular.
We found that @crabas0npm2/autem-eveniet-maiores demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.