DEV Community

Anindha Parthy for Lamno

Posted on

The Slack Redux Store

The first Lamno course will teach you how to build a real Slack, and not just a toy version. As part of my research I wanted to see what the Slack Redux Store looks like.

In order to do this, first open React Dev Tools in Chrome and select the "Client" component.

Select Client in React Dev Tools

Then switch to the console and enter: $r.props.teamStore.getState(). This prints out the Redux Store for the team.

Alt Text

If you want to take a closer look at the store you can convert store to JSON: JSON.stringify($r.store.getState()). Copy the string and paste in your favorite editor.

Top comments (0)