# Store

In the previous sections, we defined the [actions](https://redux-ru.js.org/basics/actions) that represent the facts about “what happened” and the [reducers](https://redux-ru.js.org/basics/reducers) that update the state according to those actions.

The **Store** is the object that brings them together. The store has the following responsibilities:

* Holds application state;
* Allows access to state via [`getState()`](https://redux-ru.js.org/api-reference/store#getState);
* Allows state to be updated via [`dispatch(action)`](https://redux-ru.js.org/api-reference/store#dispatch);
* Registers listeners via [`subscribe(listener)`](https://redux-ru.js.org/api-reference/store#subscribe);
* Handles unregistering of listeners via the function returned by [`subscribe(listener)`](https://redux-ru.js.org/api-reference/store#subscribe).

It's important to note that you'll only have a single store in a Redux application. When you want to split your data handling logic, you'll use [reducer composition](https://redux-ru.js.org/reducers#splitting-reducers) instead of many stores.

It's easy to create a store if you have a reducer. In the [previous section](https://redux-ru.js.org/basics/reducers), we used [`combineReducers()`](https://redux-ru.js.org/api-reference/combinereducers) to combine several reducers into one. We will now import it, and pass it to [`createStore()`](https://redux-ru.js.org/api-reference/createstore).

```javascript
import { createStore } from 'redux'
import todoApp from './reducers'
const store = createStore(todoApp)
```

You may optionally specify the initial state as the second argument to [`createStore()`](https://redux-ru.js.org/api-reference/createstore). This is useful for hydrating the state of the client to match the state of a Redux application running on the server.

```javascript
const store = createStore(todoApp, window.STATE_FROM_SERVER)
```

## Dispatching Actions

Now that we have created a store, let's verify our program works! Even without any UI, we can already test the update logic.

```javascript
import {
  addTodo,
  toggleTodo,
  setVisibilityFilter,
  VisibilityFilters
} from './actions'

// Log the initial state
console.log(store.getState())

// Every time the state changes, log it
// Note that subscribe() returns a function for unregistering the listener
const unsubscribe = store.subscribe(() =>
  console.log(store.getState())
)

// Dispatch some actions
store.dispatch(addTodo('Learn about actions'))
store.dispatch(addTodo('Learn about reducers'))
store.dispatch(addTodo('Learn about store'))
store.dispatch(toggleTodo(0))
store.dispatch(toggleTodo(1))
store.dispatch(setVisibilityFilter(VisibilityFilters.SHOW_COMPLETED))

// Stop listening to state updates
unsubscribe()
```

You can see how this causes the state held by the store to change:

![](http://i.imgur.com/zMMtoMz.png)

We specified the behavior of our app before we even started writing the UI. We won't do this in this tutorial, but at this point you can write tests for your reducers and action creators. You won't need to mock anything because they are just [pure](https://redux-ru.js.org/introduction/three-principles#changes-are-made-with-pure-functions) functions. Call them, and make assertions on what they return.

## Source Code

### `index.js`

```javascript
import { createStore } from 'redux'
import todoApp from './reducers'

const store = createStore(todoApp)
```

## Next Steps

Before creating a UI for our todo app, we will take a detour to see [how the data flows in a Redux application](https://redux-ru.js.org/basics/data-flow).
