Skip to content

Instantly share code, notes, and snippets.

@sthobis
Last active September 29, 2018 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sthobis/1727b42139a11cf3fb618ee71d3f3fce to your computer and use it in GitHub Desktop.
Save sthobis/1727b42139a11cf3fb618ee71d3f3fce to your computer and use it in GitHub Desktop.
simple redux logger middleware
const logger = store => dispatch => action => {
console.log("%cprev :", "color: #2ecc71", store.getState())
console.log("%caction :", "color: #3498db", action, "\n\n")
return dispatch(action);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment