Skip to content

Instantly share code, notes, and snippets.

@ecoffman
Last active December 21, 2017 16:26
Show Gist options
  • Save ecoffman/1e7bc12a5883b1621c45aab0b41ff2b6 to your computer and use it in GitHub Desktop.
Save ecoffman/1e7bc12a5883b1621c45aab0b41ff2b6 to your computer and use it in GitHub Desktop.
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