| >Just look that the "Getting Started" example of Vue [1] and compare it React's [2]. Thanks for feedback! The linked React guide is intended to be a pretty comprehensive tutorial — not a getting started guide in the same sense. I wouldn’t say they’re comparable in how much about either of them teaches you about using a library. Maybe it’s not obvious from the wording. If you do want a simple “getting started” guide that doesn’t require any tools, it’s right here: https://reactjs.org/docs/add-react-to-a-website.html And you can progressively learn all important concepts starting from here: https://reactjs.org/docs/hello-world.html Another common destination is this guide, which matches the Vue one in purpose a bit more closely: https://reactjs.org/docs/thinking-in-react.html The “get started” link on the React page links to resources for people with different experience levels: https://reactjs.org/docs/getting-started.html Hope that helps! |
Step 1: Get a simple "Hello world" running.
Step 2: Get something dynamic on screen.
Step 3: A simple if statement.
Step 4: A loop.
Step 5: User Input.
By the end of the guide, I know all there is to know to make a very simple interactive component.