This is just an example application that follows a Live Coding series on YouTube. This project builds out yet another Todo application using React and Redux. We will very loosely follow the Redux Todo Example, but with one major twist. We will be defining our state transitions using the State ADT from the crocks ADT library.
Links:
This app evolves over time with each session, and as such, dependencies may vary
greatly from branch to branch. For the viewers out there running yarn
on a
POSIX(-ish) system like Linux or Mac OSX, using this setup command will clear
out the old dependencies and bring in the new ones.
Note for Windows and non-yarn users: There are many ways and workflows to handle dependency management, each with their own reasons and opinions. Without requiring people to install global modules to handle cross-platform concerns, we just went with this setup for these lessons. So dependency management is entirely up to you. Once all dependencies are installed, the rest of the commands are cross platform.
This is the bread and butter for development in this project. Running it will
compile all code (HTML, CSS, and JS) and setup watches for the various files.
Once everything is built and running, a BrowserSync web server serves up the
results on:
http://localhost:1337/
.