ReactJS Complete Getting Started Guide - Movies Search with MovieDB API

preview_player
Показать описание
Installing Create-React-App: 04:54
Starting our React Server: 07:27
Intro to JSX: 10:23
CSS Styling Components: 16:08
Reactive State: 20:24
Creating Dummy Movies: 24:09
Refactoring Multiple Components: 33:21
jQuery & MovieDB API: 38:20
Consuming JSON: 44:17
Handling Search: 50:54
Click Handler Browse Movie: 55:58

ReactJS is a very popular framework for creating modern web applications for the browser. Today's course will walk you through how to install and create a React application. We'll also go over the important topics of consuming data and showing it in our app. Enjoy.

Movie Search API

Podcasts Course

Intermediate Training Core Data

Instagram Firebase Course

Facebook Group

Completed Source Code

Рекомендации по теме
Комментарии
Автор

You're my favorite youtuber for tutorials. I started watching your IOS App Tuts videos 3 years ago when I was trying to choose my profession. Now im a software engineer, thanks for the inspiring tone and clear tutorials.

dylangodfrey
Автор

Hey, instead of using binding, you can use a shorthand, you just have to use an arrow function like this:

searchChangeHandler = (event) => {

}

After that, in onChange attribute you can just type:



Thanks for the video, awesome as always!

serhiikolontaievskyi
Автор

You are awesome, Brian! Love how you are covering so many new things lately. From frontend to backend, and now to web design. Gotta do more with Javascript. It's such a strong programming language.

Dennisvm
Автор

it's amazing! ios+js!!! why are devs doing those 2 ???? so glad to see you!!! #respect!!!!

milakohen
Автор

AWESOME TUTORIAL. DON'T EVER STOP!!

aymanelmohamad
Автор

Another question -- why do you use a click handler to link to the movie page instead of an <a> tag? Is it to give us practice with event handlers?

firezdog
Автор

The best part about this video is showing an actual, proper use for tables

saad
Автор

I just started using React yesterday at my work. Perfect timing !

Nicky-dweu
Автор

Amazing video. I would recommend you to use the fetch api or axios rather than using jquery.

mayur
Автор

Dude you're awesome!!
I made this as my project (ofc with some modifications) but still, you gave me everything I needed!

alexi
Автор

Good video. Nowadays it's important to know web development, especially if you are working alone or in a small team.

TheSmellOfCode
Автор

Очень хорошая подача материала, спасибо!!!

АндрейВелков
Автор

I had trouble with 'Fetch Api'. I found it on you that I had to pull the data in the series on the news site. Thank you :)

sameetdmrr
Автор

loving your hustle man - don't forget about something like this for vue =)

alexeimakes
Автор

Question: Working well under localhost, but having trouble in deploying it and I have tried heroku and netlify neither work. Can anyone tell what's missing if I want to deploy it via those websites?

ethanli
Автор

U are amazing my friend!!!! Thankyou so much

shivamshah
Автор

Hey, thank you for this guide it helps me a lot for a school project !!!

bryansa
Автор

is there a way I can display search results only after clicking maybe a Search button? Because for my use case, I do not want to display all the available results at the beginning. Thank you.

nishmamaskey
Автор

At the 47:58, my app give me this error: 'TypeError: Cannot read property 'forEach' of undefined'...???

antoniofiorillo
Автор

Don't bind inside render method.


Usd constructor or () => arrow functions

goxrplus_studio