|
1 |
| -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). |
| 1 | +# Welcome to Learn React App! |
2 | 2 |
|
3 |
| -## Available Scripts |
| 3 | +The goal of this tutorial is to quickly get you off the ground with `React` concepts. This tutorial has hands on exercises which I consider to be the most important part of this tutorial. |
4 | 4 |
|
5 |
| -In the project directory, you can run: |
| 5 | +The way this tutorial works is that first you have to checkout this project on your computer, and run the application locally. Then open the application on a browser and you can go through the tutorial as you like. |
6 | 6 |
|
7 |
| -### `npm start` |
| 7 | +## Checkout |
8 | 8 |
|
9 |
| -Runs the app in the development mode.<br> |
10 |
| -Open [http://localhost:3000](http://localhost:3000) to view it in the browser. |
| 9 | +Checkout the project to your computer using `git`: |
11 | 10 |
|
12 |
| -The page will reload if you make edits.<br> |
13 |
| -You will also see any lint errors in the console. |
| 11 | +``` |
| 12 | +git clone |
| 13 | +``` |
14 | 14 |
|
15 |
| -### `npm test` |
| 15 | +## Environment Setup |
16 | 16 |
|
17 |
| -Launches the test runner in the interactive watch mode.<br> |
18 |
| -See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. |
| 17 | +If you don't already have `yarn` installed on your local machine please execute below command to install `yarn`: |
19 | 18 |
|
20 |
| -### `npm run build` |
| 19 | +``` |
| 20 | +npm install -g yarn |
| 21 | +``` |
21 | 22 |
|
22 |
| -Builds the app for production to the `build` folder.<br> |
23 |
| -It correctly bundles React in production mode and optimizes the build for the best performance. |
| 23 | +### Installing Dependencies |
24 | 24 |
|
25 |
| -The build is minified and the filenames include the hashes.<br> |
26 |
| -Your app is ready to be deployed! |
| 25 | +On the root directory of the project please execute below command to install all the project dependencies: |
| 26 | +``` |
| 27 | +yarn install |
| 28 | +``` |
27 | 29 |
|
28 |
| -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. |
| 30 | +### Starting application |
29 | 31 |
|
30 |
| -### `npm run eject` |
| 32 | +On the root directory of the project please execute below command to start the tutorial application: |
31 | 33 |
|
32 |
| -**Note: this is a one-way operation. Once you `eject`, you can’t go back!** |
| 34 | +``` |
| 35 | +yarn start |
| 36 | +``` |
| 37 | +After this is complete, the application will be deployed on port `3000`. Open a browser and navigate to `localhost:3000`. |
33 | 38 |
|
34 |
| -If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. |
| 39 | +----- |
35 | 40 |
|
36 |
| -Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. |
| 41 | +## Following the tutorial |
37 | 42 |
|
38 |
| -You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. |
| 43 | +Tutorial on this application are fairly straightforward to follow. Each tutorial has one or more exercises. You'll see once you are in the tutorial. |
39 | 44 |
|
40 |
| -## Learn More |
| 45 | +The exercise panel has split view. The left hand side of the screen has your solution rendered and the right hand side of the screen has the target solution. |
| 46 | +Right above the exercise panel you'll see location of exercise files. |
41 | 47 |
|
42 |
| -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). |
| 48 | +Please open the execise file on your favorite editor (VS Code, Atom, Sublime, IntelliJ etc.) and start making changes by following the instructions. Exercise files are heavily commented. Read through the comments and you should be able to write up the solution. If you have any confusion you can refer to the solution file for that exercise. Every time you make changes to the exercise file and save it, the browser will reload automatically reflecting your changes. |
43 | 49 |
|
44 |
| -To learn React, check out the [React documentation](https://reactjs.org/). |
| 50 | +### Exercise Comment Guide |
45 | 51 |
|
46 |
| -### Code Splitting |
| 52 | +Most comments in the exercise files starts with one of the below signs. This is to help you understand what you should do to the code immediately following this comments. |
47 | 53 |
|
48 |
| -This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting |
| 54 | +🏆 - **Trophy** - Describes the overall goal of the exercise. You can find this at the top of the exercise file. |
49 | 55 |
|
50 |
| -### Analyzing the Bundle Size |
| 56 | +💡 - **Light Bulb** - General information regarding the code immediately following this comment. You might find it throughout the code. No action is required on your part, just read them. |
51 | 57 |
|
52 |
| -This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size |
| 58 | +✏️ - **Pencil** - You are supposed to edit the code immediately following this comment. It is followed by a description of the change that you need to do. |
53 | 59 |
|
54 |
| -### Making a Progressive Web App |
| 60 | +🧭 - **Compass** - When the description of change is not enough, compass will give you more direction. You will find it alongside the pencil when more elaborate instruction is deemed necessary. |
55 | 61 |
|
56 |
| -This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app |
| 62 | +🚨 - **Alarm** - This means danger. Read the comment carefully. Usually it's used to say you shouldn't change the code immediately following this. It will create havoc. |
57 | 63 |
|
58 |
| -### Advanced Configuration |
| 64 | +### FAQ |
59 | 65 |
|
60 |
| -This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration |
| 66 | +<details> |
| 67 | + <summary>Do I need to install `yarn` or `npm` would do?</summary> |
| 68 | + <p>You don't really need yarn. Just use npm if you like.</p> |
| 69 | +</details> |
61 | 70 |
|
62 |
| -### Deployment |
| 71 | +<details> |
| 72 | + <summary>Which browser should I use?</summary> |
| 73 | + <p>This tutorial has been tested in Chrome only so I highly recommend you use Chrome.</p> |
| 74 | +</details> |
63 | 75 |
|
64 |
| -This section has moved here: https://facebook.github.io/create-react-app/docs/deployment |
| 76 | +<details> |
| 77 | + <summary>Which code editor should I use for exercise?</summary> |
| 78 | + <p>Anything really (Sublime, Atom, VS Code, IntelliJ) - its your preference.</p> |
| 79 | +</details> |
65 | 80 |
|
66 |
| -### `npm run build` fails to minify |
| 81 | +<details> |
| 82 | + <summary>I accidently deleted something in exercise that I shouldn't have. What should I do?</summary> |
| 83 | + <p>The easiest way is to just revert back to the previous version on your editor. If you want to start anew, then just checkout that particular file from github again using something like:<pre><code>git checkout HEAD -- exercise/01-helloWorld.js</code></pre> |
| 84 | + </p> |
| 85 | +</details> |
67 | 86 |
|
68 |
| -This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify |
| 87 | +## Contribution |
| 88 | + |
| 89 | +If you went through the exercise and saw some inconsistencies or if you have an idea to make the overall tutorial better please feel free to open a PR. |
0 commit comments