This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On any npm package you can use -S to save to dependency and -D to save to dev-dependency | |
-g can be used to install globally | |
Basic React installs | |
React: create-react-app <name> --use -npm | |
React/Redux: npm i -S redux react-redux | |
React-Router: npm i -S react-router-dom | |
Redux-Devtools Extension: npm i -S redux-devtools-extension | |
Redux-Thunk: npm i -S redux-thunk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On any npm package you can use -S to save to dependency and -D to save to dev-dependency | |
-g can be used to install globally | |
Basic React installs from scratch | |
npm i -S react react-dom redux react-redux react-router-dom redux-devtools-extension | |
Basic React installs using create react app | |
React: create-react-app <name> --use -npm | |
React/Redux: npm i -S redux react-redux | |
React-Router: npm i -S react-router-dom |