createStore(reducer, [preloadedState], [enhancer])
Last updated
Was this helpful?
Last updated
Was this helpful?
Creates a Redux that holds the complete state tree of your app. There should only be a single store in your app.
reducer
(Function): A that returns the next , given the current state tree and an to handle.
[preloadedState
] (any): The initial state. You may optionally specify it to hydrate the state from the server in universal apps, or to restore a previously serialized user session. If you produced reducer
with , this must be a plain object with the same shape as the keys passed to it. Otherwise, you are free to pass anything that your reducer
can understand.
[enhancer
] (Function): The store enhancer. You may optionally specify it to enhance the store with third-party capabilities such as middleware, time travel, persistence, etc. The only store enhancer that ships with Redux is .
(): An object that holds the complete state of your app. The only way to change its state is by . You may also to the changes to its state to update the UI.
For universal apps that run on the server, create a store instance with every request so that they are isolated. Dispatch a few data fetching actions to a store instance and wait for them to complete before rendering the app on the server.
When a store is created, Redux dispatches a dummy action to your reducer to populate the store with the initial state. You are not meant to handle the dummy action directly. Just remember that your reducer should return some kind of initial state if the state given to it as the first argument is undefined
, and you're all set.
Don't create more than one store in an application! Instead, use to create a single root reducer out of many.
It is up to you to choose the state format. You can use plain objects or something like . If you're not sure, start with plain objects.
If your state is a plain object, make sure you never mutate it! For example, instead of returning something like Object.assign(state, newData)
from your reducers, return Object.assign({}, state, newData)
. This way you don't override the previous state
. You can also write return { ...state, ...newData }
if you enable the .
To apply multiple store enhancers, you may use .