Last active
December 21, 2017 16:26
-
-
Save ecoffman/1e7bc12a5883b1621c45aab0b41ff2b6 to your computer and use it in GitHub Desktop.
This file contains 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
Information from: | |
https://egghead.io/lessons/react-react-fundamentals-development-environment-setup | |
Install and Create React App: | |
> sudo npm i create-react-app -g | |
> create-react-app <appname> | |
To start app: | |
> cd <appname> | |
> yarn start | |
To build the app: | |
> yarn build | |
To run the tests: | |
> yarn test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment