All language subtitles for 007 Create React App_en

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic Download
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,830 --> 00:00:04,250 So let's get started with our first react app. 2 00:00:05,270 --> 00:00:11,600 The first thing we're going to build is this application called Monster's Rolodex, it's a Web app that 3 00:00:11,600 --> 00:00:17,060 has these cards that have monsters in them, and these cards have a name and an email. 4 00:00:17,390 --> 00:00:22,370 And then there's also this search box that we can use to filter out the monsters by what we type in. 5 00:00:23,610 --> 00:00:30,570 Now, through building this application, we are going to understand the basics of what reactors, how 6 00:00:30,570 --> 00:00:38,400 to write Riak code and also some of the fundamental things we need to understand when building an application 7 00:00:38,400 --> 00:00:41,230 and react before we get started. 8 00:00:41,280 --> 00:00:44,970 We're going to use a tool called a create reactor app. 9 00:00:45,790 --> 00:00:53,070 Create React App is a tool that was built by Facebook to help developers get started with building react 10 00:00:53,070 --> 00:00:55,250 projects very quickly. 11 00:00:56,040 --> 00:01:05,400 The reason for this tool is because reactor is actually written in a version of JavaScript that is further 12 00:01:05,430 --> 00:01:10,630 along than the version of JavaScript that our browsers understand. 13 00:01:11,220 --> 00:01:18,840 So there are actually these two tools called Bable and Web hack that take the code that we write and 14 00:01:18,840 --> 00:01:26,320 convert them into that older version of JavaScript in HTML that our browser is able to understand. 15 00:01:26,910 --> 00:01:33,660 Now, the Facebook team understood that it would be a lot of work for new developers in order to learn, 16 00:01:33,660 --> 00:01:38,370 react, to learn all this configuration regarding Web pack and bable. 17 00:01:38,910 --> 00:01:45,470 If they just want to write react, then there should be a quick way just to start writing a REAC project. 18 00:01:45,900 --> 00:01:54,600 So this tool helps us spin up a project that already has all this configuration done for us now later 19 00:01:54,600 --> 00:01:55,530 on in the course. 20 00:01:55,770 --> 00:02:01,530 I will definitely show you guys how to create react app works under the hood. 21 00:02:01,890 --> 00:02:08,370 I'm going to show you some of the web back and some of the bable so you understand how to do it yourself. 22 00:02:08,910 --> 00:02:11,910 But right now, I just want us to start learning, react. 23 00:02:12,540 --> 00:02:18,990 Now, in order to use this tool, we see that we got a call NPCs create React app and then the name 24 00:02:18,990 --> 00:02:20,970 of our application in our command line. 25 00:02:22,160 --> 00:02:27,800 So before we begin, we got to make sure we're using the latest version of note, so if we check the 26 00:02:27,800 --> 00:02:34,300 known Web site, we'll see that the latest stable recommended version is ten point one five point three. 27 00:02:34,820 --> 00:02:42,560 So let's go to our terminal and I use an VM, so I'm going to call and VM install ten point one, five 28 00:02:42,560 --> 00:02:43,190 point three. 29 00:02:44,230 --> 00:02:47,080 And NBN will install this version of Node. 30 00:02:48,970 --> 00:02:54,190 And then we're going to use it and values ten point one, five point three. 31 00:02:56,480 --> 00:03:05,960 Now we're going to call what we saw earlier and create React App Monster's Rolodex. 32 00:03:08,580 --> 00:03:16,680 Now, Ragtop is now building out our project and setting up the files, the Web hack, the bable, all 33 00:03:16,680 --> 00:03:20,880 the stuff we need so that we can start using react right away. 34 00:03:22,430 --> 00:03:30,380 And after this project gets built, let's look into it and then let's see what create React app gives 35 00:03:30,380 --> 00:03:30,710 us. 3879

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.