You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/pages/04-web-development/24-react.markdown
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,3 +16,52 @@ browsers.
16
16
17
17
18
18
<divclass="well see-also">React is an implementation of the <ahref="/javascript.html">JavaScript frameworks</a> concept. Learn how these pieces fit together in the <ahref="/web-development.html">web development</a> chapter or view the <ahref="/table-of-contents.html">table of contents</a> for all topics.</div>
19
+
20
+
21
+
### Beginner React tutorials
22
+
Generally before you start working with React you will want to learn how
23
+
to build your Python backend with a [web framework](/web-framework.html)
24
+
such as [Django](/django.html), [Flask](/flask.html) or
25
+
[Pyramid](/pyramid.html). Once you get comfortable with the
26
+
[web development](/web-development.html) basics with one of those frameworks
27
+
as well as [JavaScript](/javascript.html) then it will be much easier to
28
+
tack on React to build your client-side user interfaces.
29
+
30
+
*[JavaScript fundamentals before learning React](https://www.robinwieruch.de/javascript-fundamentals-react-requirements/)
31
+
provides a gut check that you have the prerequisite knowledge to avoid
32
+
getting impossibly stuck while trying to learn React.
33
+
34
+
* The [official React tutorial](https://reactjs.org/tutorial/tutorial.html)
35
+
is one of the best ways to start using React because many other tutorials
36
+
quickly fall out of date while this one tends to stick to the basics
37
+
that are relevant to beginners.
38
+
39
+
*[Django REST with React (Django 2.0 and a sprinkle of testing)](https://www.valentinog.com/blog/tutorial-api-django-rest-react/)
0 commit comments