This code is from the course The Ultimate Redux Course by Mosh Hamedani @ Code With Mosh
Install Node.js and npm. Once installed open code in your favorite code editor such as Atom, Visual Studio Code or even an IDE such as WebStorm and run npm i
to install dependencies.
Open a terminal and type in npm start
to run the dev server. Go to localhost:9000
to see the results.
Direct the terminal to the src/functional
sub-folder and run node {FILE_TO_RUN_GOES_HERE}
.
Here's a description of the project code included.
- server: Node.js back-end for the bug tracker app.
- src: completed React/Redux front-end for bug tracker app.
- src/store: completed redux store for the bug tracker app.
- src/store/middleware: redux store middleware for bug tacker app.
- src/functional: sample JS files to demonstrate functional programming concepts.