Material suggestions for a dev about to learn reactjs [closed] - reactjs

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
do you have any advice for a dev about to begin learning react js?
all I require would be links to video tutorials and maybe a couple of tips and tricks that could help along the way... it would be really helpful, to beginners everywhere(i think we're all actually beginners, but that's a topic for another day).

The best place to start is with the official React tutorial, step-by-step guide, and general documentation.
I'd recommend using Create React app as instructed on the official site to create your first react application to mess around with.
Once you get pretty familiar with the library, you can find an abundance of free YouTube tutorials and StackOverflow threads to get deeper into specific subjects that still remain confusing to you.

Check out the React documentation and it would be a great start. On the other hand, you can practice on the freeCodeCamp and improve yourself.

Related

I did Udemy course on MERN stack. Please suggest some projects for my resume in order to apply for internship [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 months ago.
Improve this question
Please suggest some projects based on MERN stack that will look on my resume. I will afterwards apply for internships or entry level full stack dev jobs.
You can build these projects it'll help you learn something new
Ecommerce site :- you will learn rendering technicians and also how to design APIs you can also integrate payments
Real-time chat App :- It will help you learn about web sockets and real-time data
Blog Site :- Build a fully functional blog application for learning about routing, static rendering, dynamic rendering
Best thing to build is just re-build some papular site and also try new JS frameWorks like Next-Js, remix and any other

what is the best way to learn react? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
what's the best way/resources to learn react? i have some background in HTML/CSS/JS/python.
You can simply start your first React journey with CRA(Create React App).
There are many steps to build React project like Webpack, babel or something but if you use CRA, you don't have to do it. You can simply start with your first React project with it.
Here is a link.
https://create-react-app.dev/docs/getting-started/
and you should learn usage of React in here
https://reactjs.org/
This is another tip is that if you wanna learn React.js fast, you should know how javaScript runs and know how to make a component using html, css first. cuz one of the reasons People use React is that it helps people to make reusable UI component with JSX but usage JSX code is almost same with using plain html, css code.
I hope you find a solution :D

Getting started with react-redux with typescript [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am looking for some links that provide "getting started" documentation for react-redux with typescript.
I have react application with multiple components - some of which are nested. Now I need to wire them up so that they can communicate with each other. Some online research led to me to believe that redux is something that should be used in such cases. However I could not find any online tutorial that deals with react, react-redux and typescript. Can anyone point me to right direction?
Redux has it's own great documentation.
If you have any concrete questions feel free to post another question.
https://redux.js.org/recipes/usage-with-typescript

Angular 2 with ES5 useful links for beginners [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm new to Angular 2, I just want some useful links for learning Angular 2 with javascript(ES5), since I tried to find some useful stuff from google search, but there is no single place where I'll get basic information. So anybody knows about any kind of material like videos or demo samples, please post here, I really appreciate you responses :)
Here are some links, what I knows:
http://blog.thoughtram.io/angular/2015/05/09/writing-angular-2-code-in-es5.html
http://nicholasjohnson.com/blog/how-to-do-everything-in-angular2-using-es6/
https://daveceddia.com/dependency-injection-angular-2-es5/
This is a good hands on starting point, Angular 2 + ES6/7
https://github.com/blacksonic/angular2-esnext-starter
Basically as official suggested angular2 has good compatibility with typescript instead of ES5*6 may be thats the reasons why all the tutorials and articles were written using typescript but still if you wanna use angular2 using ES5 you can refer here :-
https://www.sitepoint.com/creating-components-angular-2-typescript-es5/
https://angular.io/docs/js/latest/index.html
https://egghead.io/lessons/angularjs-angular-2-hello-world-es5
also you can refer direct with your problems on stackoverflow and github issue
hope this may help you :)
I tried the official docs and they're very clear
https://angular.io/guide/quickstart

Best way to learn React with Babel from scratch? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have an idea for a game and I will try to create it.
It is a simple multiplayer game that runs in a browser.
I was recommended to use React.js and Firebase.
So I paid 60 dollars for a video tutorial that built an app using these technologies, perfect! Unfortunately, it uses the JSX transformer that was deprecated, and now I have learned that I should use something called Babel instead.
What I wonder is if you can recommend me some tutorial that teach me React with Babel from scratch. I googled a lot but I could not find anything directed at noobs
If you take a look at the react site tutorial (http://facebook.github.io/react/docs/tutorial.html) they show a post JSX transformer method using babel. You should also look at some of the starter packages to see what style of organizing and building react works best for you. Here are a couple;
https://github.com/jmarkstevens/ReactPatterns
This isn't a forum for this sort of question and the question might get flagged as off-topic, but for what it's worth, since learning this stuff is hard for beginners, I suggest going to the redux library github page and watching the 30 free tutorial videos, then downloading the examples and using their 'webpack' configuration. The examples come with the pre-installed set of tools for transpiling JSX using Babel. You could look at the "counter" example since it doesn't have much redux at all (though I suggest using it anyways).
Otherwise you could be using gulp and browserify to babelify your code but again, the question is broad and should be more of a forum post so that a thread could be started for discussion.

Resources