Hands on book to build your first own application in plain React: <a href="https://www.robinwieruch.de/the-road-to-learn-react/" rel="nofollow">https://www.robinwieruch.de/the-road-to-learn-react/</a><p>- state management<p>- fetching data<p>- interactions like search and sort<p>- pagination<p>- client-side caching<p>- ...<p>3rd edition will be released soon. 2nd edition was released in January, so it's pretty up to date and will stay up to date.
Not "books" exactly, but I keep a big list of links to high-quality tutorials and articles on React, Redux, and related topics, at <a href="https://github.com/markerikson/react-redux-links" rel="nofollow">https://github.com/markerikson/react-redux-links</a> . Specifically intended to be a great starting point for anyone trying to learn the ecosystem, as well as a solid source of good info on more advanced topics.<p>If you really _do_ want some actual books, I have links to several at the end of the "React Tutorials" page in my list, and this recent post lists a number of React books with some short summaries: <a href="https://reactdom.com/blog/reactjs-books" rel="nofollow">https://reactdom.com/blog/reactjs-books</a> .
There is an online course '30 days of React' with an online PDF which teaches React in small chunks.<p>You can also use React[2] and Redux[3] tutorials by New Boston and practice along with the course.<p>Other than that, You can go through React documentation or register for courses on Udemy and Pluralsight.<p>Links
[1] <a href="https://www.fullstackreact.com/30-days-of-react/" rel="nofollow">https://www.fullstackreact.com/30-days-of-react/</a><p>[2] <a href="https://www.youtube.com/playlist?list=PL6gx4Cwl9DGBuKtLgPR_zWYnrwv-JllpA" rel="nofollow">https://www.youtube.com/playlist?list=PL6gx4Cwl9DGBuKtLgPR_z...</a><p>[3] <a href="https://www.youtube.com/playlist?list=PL6gx4Cwl9DGBbSLZjvleMwldX8jGgXV6a" rel="nofollow">https://www.youtube.com/playlist?list=PL6gx4Cwl9DGBbSLZjvleM...</a>
It's a video-based web course, not a book, but it's still the best resource I recommend for learning React.<p><i>React for Beginners</i> by Wes Bos [1]<p>[1]: <a href="https://reactforbeginners.com/" rel="nofollow">https://reactforbeginners.com/</a>
I've got a lot out of reading <a href="https://www.fullstackreact.com/" rel="nofollow">https://www.fullstackreact.com/</a><p>React, Redux, Relay, GraphQL are covered comprehensively, with good examples and explanation.
I don't think React has a big enough API to warrant a book. That said grokking the concepts behind Redux does require a bit of assistance.<p>Dan Abramov's screencasts on EggHead.io do that: <a href="https://egghead.io/courses/getting-started-with-redux" rel="nofollow">https://egghead.io/courses/getting-started-with-redux</a>
I find that the best way to learn a new language is practice and practice so I recommend <a href="https://www.codecademy.com/learn/react-101" rel="nofollow">https://www.codecademy.com/learn/react-101</a> for starter and then move on to <a href="https://www.udemy.com/react-redux/?couponCode=iea9" rel="nofollow">https://www.udemy.com/react-redux/?couponCode=iea9</a> to clear up a lot of topics that were vague in the official docs and then more practice... :)
Here is a complete guide with free resources and tutorials to follow: <a href="https://www.quora.com/Whats-the-best-place-to-learn-React-js" rel="nofollow">https://www.quora.com/Whats-the-best-place-to-learn-React-js</a><p>... and a free tutorial ReactJS Redux, the Right Way: <a href="https://www.ReactJS.co" rel="nofollow">https://www.ReactJS.co</a>
Books are great for learning the more academic aspects of programming-- when you're trying to wrap your mind around an unfamiliar concept, a high-quality explanation can be really helpful. When you're trying to pick up a new framework, though, the bigger challenge is usually figuring out where all of the controls are. The best (only?) way to do that is by building a simple project, and looking up what you don't know along the way. I'd advise staying clear of all of the other other popular tools in the React ecosystem (Redux, Immutable, etc...) until you've worked through the basics of how React works on its own. Learn to write messy React code first, then learn the idioms.