Sudoku solver, generator, puzzle ranker, with a React frontend

I’ve finally reached a point where I have a complete end to end Sudoku generator, a human puzzle grader, and an updated React frontend to load generated puzzles. The integration with the solver is still there. The latest version is deployed here: http://sudoku-solver.kevinhooke.com/. I’ve plenty of material to share from this journey, so more posts …

Updating my React Sudoku Solver app: Replacing Flux with Redux (part 2)

In the first part of converting my Sudoku solver React app from using Flux to Redux I looked at creating the Redux Store, Action Creators, reducers, and connecting Components to the Store. In this part 2 I’m taking a look at using redux-thunk for making my api calls. Async API calls are integrated into a …

React Redux cheatsheet

This is my summary of the bare minimum steps as a quick-ref cheatsheet for adding Redux to an existing React app. This is just some notes for future reference. If you’re looking for tutorials, take a look at: https://redux.js.org/introduction/getting-started https://react-redux.js.org/introduction/quick-start Here’s my quickref: npm install –save react-redux Add Redux devtools for Chrome (see here): Wrap …