Тёмный

Learn Webpack - Full Tutorial for Beginners 

freeCodeCamp.org
Подписаться 10 млн
Просмотров 379 тыс.
50% 1

Learn Webpack from Colt Steele in this full tutorial course. It begins with a simple question: "What is webpack?" Quickly we move on to installing Webpack, configuring it, and adding loaders for CSS, SASS, HTML, and Files. The course covers cache busting, setting up a dev server, and splitting up your development and production config files. We incorporate multiple Webpack plugins including clean-webpack-plugin, mini-css-extract-plugin, optimize-css-assets-webpack-plugin, terser-webpack-plugin, and html-webpack-plugin. It's a lot of stuff :)
💻 Code and commits: github.com/Colt/webpack-demo-app
🔗 Colt Steele's RU-vid channel: / @coltsteelecode
🔗 Colt Steele's Udemy courses: www.udemy.com/user/coltsteele/
⭐️ Course Contents ⭐️
⌨️ (0:00:00) What Even Is Webpack??
⌨️ (0:08:12) Installing and Running Webpack and Webpack-CLI
⌨️ (0:22:18) Imports, Exports, & Webpack Modules
⌨️ (0:29:58) Configuring Webpack
⌨️ (0:38:57) Loaders, CSS, & SASS
⌨️ (0:53:55) Cache Busting and Plugins
⌨️ (1:07:13) Splitting Dev & Production
⌨️ (1:17:13) Html-loader, File-loader, & Clean-webpack
⌨️ (1:28:17) Multiple Entrypoints & Vendor.js
⌨️ (1:34:45) Extract CSS & Minify HTML/CSS/JS
--
Learn to code for free and get a developer job: www.freecodecamp.org
Read hundreds of articles on programming: www.freecodecamp.org/news

Опубликовано:

 

1 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 560   
@Elluzive
@Elluzive 5 лет назад
Colt is responsible for me going down this web development rabbit hole. I have not seen daylight in a year.
@dailydevelopershow
@dailydevelopershow 4 года назад
@@neilt1352 Hahaha
@igorsushko1356
@igorsushko1356 4 года назад
"You can learn this 6 topics and work like frontend developer" - spoke they, haha
@rethabilencheke2338
@rethabilencheke2338 4 года назад
@@neilt1352 Hahahaha
@lycan2494
@lycan2494 4 года назад
no you are responsible for what you have done for yourself. not colt. not anybody else.
@zarrar1825
@zarrar1825 3 года назад
Innocent its a joke jeez who hurt you?
@pouyajabbarisani
@pouyajabbarisani 3 года назад
It's about 4 years since I'm using webpack but today I've actually learned it!
@nerdiloo9863
@nerdiloo9863 3 года назад
LOL - you heard that webpack geniuses???
@IndrakumaraSirisena
@IndrakumaraSirisena 3 года назад
Me too
@vigneshpugaz8308
@vigneshpugaz8308 3 года назад
Me too :)
@VeaceslavBARBARII
@VeaceslavBARBARII 3 года назад
1:50:19 We've just scratched the surface 😅
@madhousenetwork7765
@madhousenetwork7765 3 года назад
you are not alone :D :D
@CodeGoblin
@CodeGoblin 3 года назад
0:36:10 had to use "devtool": false, instead of none due to a breaking change in the latest webpack. 1:15:04 latest webpack 5 package.json script: "start": "webpack serve --config webpack.dev.js --open", 1:24:30 file-loader not needed in webpack 5: Add the following to your webpack.prod.js file module.exports = merge(common, { mode: "production", output: { filename: "main.[hash].js", path: path.resolve(__dirname, "dist"), assetModuleFilename: "./imgs/[name].[hash].[ext]", }, }); 1:42:05 optimize-css-assets-webpack-plugin not supporting webpack5, use css-minimizer-webpack-plugin instead per maintainers.
@vijaynavale1079
@vijaynavale1079 2 года назад
thanks buddy
@Andre-px6hu
@Andre-px6hu 2 года назад
thanks a lot man, I didn't understand why my images weren't loaded ahaha
@abdallahabdedaiem51
@abdallahabdedaiem51 2 года назад
I've just fixed devtool, and was curious if anyone had same issue, then I've ssen this. You Rock!
@jasonhoi85
@jasonhoi85 2 года назад
I will use devtool: 'inline-source-map' to make it look similar in webpack 5 (yes I know your tutorial at the time is at webpack 3)
@pranavc747
@pranavc747 Месяц назад
1:11:53 merge is being imported as a named function {merge} now instead of default const merge = ...
@LyadhKhorEngineer
@LyadhKhorEngineer 5 лет назад
Colt is the reason why I was able to get back into Coding. Thanks for being an awesome instructor in Udemy and everywhere.
@asoluka_tee
@asoluka_tee 5 месяцев назад
The best video on webpack I have seen so far. When following this video (in 2023), at the point where we use file-loader, you might experience a bug that causes your webpack to build two asset files and then link to the wrong one. This is due to webpack 5 adding functionality to load assets by default. To resolve that error, add this to the rules array, { test: /\.(svg|png|jpe?g|gif)$/i, type: "asset/resource", }, and remove the file-loader config completely.
@joelfernando9905
@joelfernando9905 3 года назад
Thanks, thanks and thanks! Literally 2 weeks trying to learn Webpack and just with this course in one day i feel pretty confident to start my own projects and sticking with the docs to do awesome things with module bundling. As always Colt never fails :D
@CalmedByNature
@CalmedByNature 5 лет назад
Spent the whole day searching for a tutorial this good. Thank you.
@kevinwagner5023
@kevinwagner5023 3 года назад
this is such an excellent introduction to the basics and theory of webpack, enough to get a person up and running with their own project or able to competently interact with a current webpack configuration. It's just under 2 hours of video time, however I spent probably a told of 5 hours setting things ups, coding along, etc. Very well worth it
@dangolekhayotango1656
@dangolekhayotango1656 5 лет назад
Love u colt Steele..Ur web developer bootcamp in udemy is awesome. love from Nepal
@mehulgala07
@mehulgala07 3 года назад
This guy is amazing! Thoroughly enjoyed the mini-course. I must confess I was always a bit intimidated by Webpack but this guy has taken away my mental demons. The content and structure of this course is amazing! Loved it! Thanks, Colt, you are amazing !!!
@AshishKumar-UI
@AshishKumar-UI 4 года назад
This is one of those amazing tutorials I have watched so far in my entire career. Thank you so much for this detailed explanation. you are awesome...!!
@lilrex2015
@lilrex2015 4 года назад
Wow, this 2 hr video took me 5 days to get through, but I enjoyed every second of it and this helped me soooooo much.
@zionsandeep788
@zionsandeep788 2 года назад
Just halfway through the video and I've already understood more than what I got from a paid Udemy course. Though this video is 2 years old, its a fantastic starting point for anyone willing to learn Webpack! Colt, you're an absolute legend. Thanks!
@mehra.akshit
@mehra.akshit 4 года назад
Struggling to grasp the basic concepts of Webpack, I found this video! Best of the best step-by-step explanation. Thank you!
@psychoedge
@psychoedge 3 года назад
Handy down one of the best tutorials I've seen on web technologies. Thanks for making me able to set up a webpack project in a glimpse
@Same7ashY
@Same7ashY 2 года назад
Always on point, Colt! In my opinion, this is the only tutorial one would need to understand how webpack works. Thank you for such a great tutorial.
@YinonOved
@YinonOved 4 года назад
Glad I found this course by colt Steele. Couple of years back I went through his js algorithms and data structures course and it was so clear and fun to learn
@ayushsaini9798
@ayushsaini9798 2 года назад
This is still relevant in 2021. Thank you Colt!!! For people watching this, there are few things you might want to know: - with webpack 5, you can use asset modules instead of file-loader - use output.clean instead of clean-webpack-plugin
@andrsgarc
@andrsgarc 2 года назад
thanks I was looking for this comment :D
@chiragparyani7546
@chiragparyani7546 Год назад
Best 2 hours spent on a video tutorial in months! Loved it. Thanks Colt!
@matthewstaton6810
@matthewstaton6810 4 года назад
Love this man. Introduced me to this industry. Appreciate it, Colt.
@VikasTawniya
@VikasTawniya 3 года назад
Colt is one of the best tutor out there. I love his courses.
@sashengovender2401
@sashengovender2401 4 года назад
This tutorial helped me more than you can imagine. Thank you very much sir!
@benjaminmoseslieb9856
@benjaminmoseslieb9856 2 года назад
One of the best tutorials I've ever watched. And I've watched 15 years worth of tutorials. Thank you so much, subscribing.
@AlexanderDemin
@AlexanderDemin 3 года назад
Once again, just finished the course in the "coding along" mode. The fantastic course! Recommended.
@TazExprez
@TazExprez 3 года назад
Great tutorial! Thank you so much! Needed to use const {merge} = require("webpack-merge"); instead of const merge = require("webpack-merge"); Just a heads up in case you get any errors. Webpack now minifies your production code by default. I still watched until the end of the tutorial to learn more.
@jordanski5421
@jordanski5421 3 года назад
Thanks that fixed my issue, where did you get that info? I'm interested in finding out exactly why this change occurred.
@ahmetozturk5178
@ahmetozturk5178 3 года назад
@@jordanski5421 check the official docs
@jordanmowry9164
@jordanmowry9164 3 года назад
Thanks. I was stuck for a while and couldn't figure out how to move forward.
@aadisriram
@aadisriram 3 года назад
I decided to switch my career over and my first task on my new role was to upgrade Webpack! I looked at the docs for 2 days, read the existing codebase for a few more days and ended up with nothing. Saw this video and literally everything that I read over the last few days makes sense!
@bssushmitha6534
@bssushmitha6534 3 года назад
Very well explained Colt. Thank you for this tutorial. I highly recommend anyone who wants to learn a webpack, or start understanding it.
@GuilhermeCarvalhoOnline
@GuilhermeCarvalhoOnline 4 года назад
Amazing tutorial! Webpack was a kind of abstract tool for me, because I usually use CLI's. But not anymore, because I've seen here Webpack so easy to code. Thanks, man. Well done! :)
@ORNSTAIOAO
@ORNSTAIOAO Год назад
I'm a webpack newbie and this video was a HUGE help! I can't thank you enough!
@roydonk2878
@roydonk2878 4 года назад
Thank you for taking such an intimidating concept and breaking it down step by step in an easy to digest and follow along away. And thank you even more for then providing that content for free.
@dankokozar
@dankokozar 2 года назад
Best Webpack tutorial online. Right order of features and the right pace. Kudos!
@mttrchrds
@mttrchrds 4 года назад
Hey Colt, thanks for the tutorial. Really great and super useful. One bit of feedback: right at the end when you are minifying the HTML. You move "new HtmlWebpackPlugin()" from "plugins" in the common webpack config, and add it to "plugins" in the dev config - but in production you add it to "optimization.minimizer" instead of "plugins" which I found strange. It all seems to work great but an explanation why in production it is located in a different location would be really useful. Cheers, Matt.
@sachindev0072002
@sachindev0072002 4 года назад
This video is a very good starter for every aspiring web developer. Extremely helpful for me personally. It's a one pill solution to learn Webpack in 2 hours. Great work Colt!!
@fer86bd
@fer86bd 4 года назад
Sorry to bother you, but if this is a good starter point what would be the next step for learning it moe deeply? please, its so dificult to find something more advance!!
@martinpenev6750
@martinpenev6750 3 года назад
So far this is one of the best and most comprehensive tutorial and explanation of Webpack. I learned so much here.
@yunusde
@yunusde 4 года назад
Webpack always intimidates me, but now i am like "I know Kung-Fu". thank you so much.
@permanar_
@permanar_ 4 года назад
IKR DAMN😂
@lycan2494
@lycan2494 4 года назад
too bad u only scratched the surface
@lubomirpacheliev363
@lubomirpacheliev363 3 года назад
@@lycan2494 what do you mean *trembles*
@lycan2494
@lycan2494 3 года назад
@@lubomirpacheliev363 u should be frightened!
@kestonneunie
@kestonneunie 2 года назад
Great course, and like many people have commented, you have really helped to demystify the webpack setup in such a simple way and also show us useful things we can do with it - top guy!
@prafullaraichurkar4369
@prafullaraichurkar4369 2 года назад
The content and the structure of this course is Amazing! Thank you Colt :)
@Anf3lKun
@Anf3lKun 3 года назад
Wow I took 4 days to go through this tutorial and at first I tried to solve the things by myself and then I watched How He did it and at the end of the course I felt like I learnt something really powerfull and uselul , so I just want to say Thank You, by far the best explanation I have ever seen on webpack.
@senthilkumaripaulsami5737
@senthilkumaripaulsami5737 4 года назад
Thank you for such a clear explanation. I learned a lot of stuff about webpack. I had to actually set up a new app with custom configurations. It was very daunting and intimidating. Then I found this video. This helped a lot in setting things up.
@onlyjan9327
@onlyjan9327 2 года назад
I am in the last year of my school to be an electronic engineer while studying web development on my own. I've always had trouble with bad teachers and administrative management because usually, I feel I'm losing time and that the people that suppose to be our mentors don't care about us. Around minute 40:00 I genuinely started crying, I couldn't stop it, thinking why I don't have such an amazing teacher at school. I'm still crying, so I only can say THANK YOU!!!
@MrFunasty
@MrFunasty 4 года назад
This is the most comprehensive and helpful webpack turorial on youtube !
@noraneco6762
@noraneco6762 6 месяцев назад
This helped me so much while I was having trouble making sense of the webpack official documentation and couldn't figure out where to start. Thanks so much!
@nikhilhukkerikar6753
@nikhilhukkerikar6753 3 года назад
The video description should actually say "Explaining the Abstract framework Webpack" Seriously this is one of the best tutorials on Webpack I've come across that explain the concepts and architecture! Thank you!
@DarrenLewisHarris
@DarrenLewisHarris 4 года назад
Best tutorial I've encountered on this subject. Been following along while building an AngularJS app and it's been perfectly clear. Thank you!
@lightningresaba146
@lightningresaba146 4 года назад
I'm new to web dev and i like what webpack can do, the tricky part is configuring it, but i like it so this is gonna be my workflow now, i might add some templating engine like handle bars too, currently I'm taking your algo data structures master class, tnx Colt!
@tylercode2207
@tylercode2207 2 года назад
You are really a good teacher...This is one of the best tutorials out there in general...Keep up the good work brother!
@ricardodasilva9241
@ricardodasilva9241 3 года назад
This is the best webpack tut I have seem so far. I hardly find a article/video with the proper project source and commits. Hope to see more stuff like this with babel for example.
@JoseNario
@JoseNario 3 года назад
Easily the best webpack introduction I've seen, hands down.
@anmolrastogi380
@anmolrastogi380 4 года назад
This is perhaps the best webpack tutorial i have watched. Thank you Colt
@juang_
@juang_ 3 года назад
I've been using webpack for a couple of days without actually knowing what was going on until I found your tutorial. Thank you good sir! As a side note a couple of things do not work with latest version of webpack but just google the problem and fix it.
@vcizek6047
@vcizek6047 4 года назад
What a fantastic tutorial and an amazing tutor. This is great quality tutorial, thank you!
@luancardosolc
@luancardosolc 4 года назад
Really nice!! He explains how everything works instead of just do the things, it give us a better understanding.... tks a lot!!!
@georgeputnam4850
@georgeputnam4850 4 года назад
Just what I needed. Awesome introduction to Webpack!
@JoaquinAlcerro
@JoaquinAlcerro 4 года назад
For me, this has been a great introduction tutorial. Thanks for your time and effort.
@alishokrollahi3310
@alishokrollahi3310 4 года назад
Amazing course! It was great like the previous tutorials. Thank you colt. You are the best
@red_cape.
@red_cape. 3 года назад
Man your content is amazing, you are a spetacular teacher, this subject seems like japanese to me and now it is so mutch simpler to understanding it. Thank you!
@maiaklimenko6614
@maiaklimenko6614 2 года назад
This is the best thing I cam across as a new developer. Webpack is indeed intimidating for the newbies, but I think I am pro at it after this video (not really, but we are definitely getting there!) ;) Thank you so much!
@theYOFFLISES
@theYOFFLISES 3 года назад
I fully agree this amazing video brings a big deal to deeply understand what to do with WebPack for a highly tuned bundle. Now when I bootstrap a new project for example with Vue CLI, it gives a profound understanding of how this all is scaffolded. However for those who now consider themselves as kind of Webpack ninjas (as seen in the comments), I would say, speaking about me first, we are still miles away to understand how plugins, loaders, etc work and articulate themselves. Another big step required to master this as well. Another step would also be to understand the why and how of source maps. Some comments: 1/ I noticed css-loader is not strictly necessary for me, before style-loader which injects into the DOM (on a project using no sass but post-css to have modern CSS compatible with IE). However, strangely, MiniCssExtractPlugin.loader requires it. 2/ Speaking about vendor.js, I was surprised we need to explicitly install dependencies (such as jquery and popper) to make bootstrap work. It looks it kind of defeats dependency management which primary purpose is to handle this. My hope is this need is limited to first tear of dependencies not the whole tree when many dependencies are involved. 3/ In the production configuration, HtmlWebpackPlugin was inserted in the optimization section. It works. However seems more logical for me to place it in the plugins section. It works too. Finally, thank you for this fantastic video. It has it all. Highly recommended.
@Lammot
@Lammot 5 лет назад
Thanks dude, that's helpful. Minor suggestion: i know you like windows as background, but the bright light is... bright? :) Question: say i bloat my project with tons of files. Is there a way to graph dependencies? Maybe a gui? Question: does anybody know how /bin/ in some of npm modules come to be? Are they created on npm install? Or at a later date? Are the contents used for the module itself or does your app uses them? Do i need to clear them out if i want to do a clean build (assuming i used "npm update" beforehand). PS: Rusty is now a cat?
@balanceiseverything2565
@balanceiseverything2565 3 года назад
Love this tutorial. Demystified a lot about Webpack. Thank you Colt Steele.
@TS-qf2km
@TS-qf2km 4 года назад
Great piece of knowledge. Just starting my webpack journey and it clears a lot to me. Many thanks :)
@gabrielfono844
@gabrielfono844 4 года назад
damn this is awesome. hopefully, I will break down my interview at facebook , uber and capital one thanks colt. I read the doc and I thought I knew everthing but the way that you have explained it make me think that there are people really talent out there and I should follow them. this is the first course I took to you because I always think I am smart enough to figure everything out on my own. I really appreciate your efforts.
@bodhisatwabarma1156
@bodhisatwabarma1156 4 года назад
Where do you apply for these interviews ? Help out a bro from the 3rd world 😬
@kylehenson2259
@kylehenson2259 3 года назад
actually one of the best webpack tutorial , i appreciate it
@vasshe
@vasshe 4 года назад
Excellent video! thanks for taking the time to explain things clearly with great examples!
@justinturner2271
@justinturner2271 4 года назад
Great video for mid-software dev who has to start using webpack. Subscribed and will watch any other full/crash courses you publish.
@Spykerel04d
@Spykerel04d 3 года назад
If anyone is having problems with "merge-webpack".. On Webpack +5 you must destructure the merge function and CleanWebpackPlugin from the package import: const { merge } = require('webpack-merge') const { CleanWebpackPlugin } = require("clean-webpack-plugin"); Also, you may have problems with "webpack-dev-server". Instead, you can use "webpack-serve" (without the final 'r')
@tmchecki8610
@tmchecki8610 3 года назад
the best webpack for me! I watched around 10 other tutorials and this one is the best.
@distantstorm88
@distantstorm88 2 года назад
This really helped me! Thanks for taking the time to do this video tutorial! On thing I would have loved to have seen is using multiple loaders for the same file type, however I am guessing you just have to tweak your regular expression.
@asmasupih5344
@asmasupih5344 Год назад
I just finished watching this tut (October.2022). its the best webpack tutorial I have ever seen ! I just want to point at some things: * for merge, I had to import it this way: const { merge } = require('webpack-merge'); or it game me an error. * I had to use css-minimizer-webpack-plugin rather than optimize-css-assets-webpack-plugin, you might need this if you are using a new version of webpack.
@navead30
@navead30 3 года назад
One of the better introduction to webpack. Suddenly the webpack blackbox is more clear.
@kerryd2060
@kerryd2060 5 лет назад
I'm in all of your Udemy courses. Thank you.
@farhan_jiwani
@farhan_jiwani 4 года назад
Very good tutorial and it covered a LOT but it was easy to ingest at the pace you took. I have already shared it with a few people who may benefit from this.
@mohantalachutla6834
@mohantalachutla6834 4 года назад
What a tutorial!!! Simply awesome👏✊👍 one of the best i ve ever encountered. please do more
@thecodecatalyst
@thecodecatalyst 4 года назад
Thanks Colt Steele, You just cleared a black blur in my career, thanks a lot this is of great help!
@WarriorOfPiece
@WarriorOfPiece 5 лет назад
I really appreciate all the videos you guys upload
@tachyonbeats1527
@tachyonbeats1527 5 лет назад
thank you for this tutorial. Just your intro alone is worth a thumbs up. I'm learning how to build my own app using create_react_app
@pixycz
@pixycz 2 года назад
Excellent tutorial! Finally, I have the idea about Webpack now, I'm starting understand all the copy-paste black magic I've bee doing for years. Thank you!
@bhaaratsharma6023
@bhaaratsharma6023 Год назад
This guy is one of the best tutors out there.
@davidrodriguezramirez1941
@davidrodriguezramirez1941 Год назад
Not only I learned a lot, really a lot with this tutorial, but also I laughed a lot too, man, you're amazing and you gain a new follower
@lllumineux
@lllumineux 4 года назад
Just amazing! Thanks a lot for your tutorial, it's awesome!
@srinivasb3845
@srinivasb3845 3 года назад
Highly recommend this video to get started with webpack.
@Canardeur
@Canardeur 4 года назад
Awesome tutorial. Extremely well explained. Thank you very much.
@glennsep
@glennsep 3 года назад
Great introduction. I learned a lot and believe I have a foot hold into getting a start with Webpack. Your cat is awesome!
@seephor
@seephor 2 года назад
Great tutorial. Webpack is one of those development tools that becomes a development project on its own.
@abhishes
@abhishes 4 года назад
Amazing course. Will you be doing an advanced course as well? thank you so much for doing this.
@muovax5081
@muovax5081 5 лет назад
Love you so much dear Colt ❤️
@alibek1545
@alibek1545 3 года назад
if you're using webpack-cli 4 or webpack 5, change webpack-dev-server to webpack serve. Example: "serve": "webpack serve --config webpack.dev.js --open"
@igorsushko1356
@igorsushko1356 4 года назад
Amazing clear tutorial! thank you very much!
@pulserudeus7968
@pulserudeus7968 Год назад
Very satisfying and informative! This is all what I wanna know. Thanks Colt!🙌🏼
@saumyaverma9581
@saumyaverma9581 2 года назад
I don't know but if this guy will teach any difficult thing . I'm gonna learn it.
@shubhamshekhar23
@shubhamshekhar23 2 года назад
My mind is blown, I learnt a lot from this tutorial. I was always afraid of webpack.
@harshitnigam8700
@harshitnigam8700 4 года назад
Great stuff!! That was really helpful. Thumbs up for Colt Steele.
@jayliang5737
@jayliang5737 4 года назад
Awesome! Best webpack video I've seen so far!
@onedimensionalchess4373
@onedimensionalchess4373 4 года назад
Awesome course. I might have to review it, but I can see why ppl like Colt Steele.
@bensont5455
@bensont5455 4 года назад
Very clear explaination!! thank you so much!!!
@anand_dudi
@anand_dudi Год назад
wow what a instructor .define every thing in depth details
@birwinz
@birwinz Год назад
Best Webpack tutorial I have viewed
@user-ps5vm3rq2g
@user-ps5vm3rq2g 4 года назад
Finally I find this to help me understand those mysterious webpack.config.js spells Thanks a lot for the tutorial, trying to cast some magic by those spells now...
@szymonadamczuk5367
@szymonadamczuk5367 3 года назад
Scary topic explained in a very simply and calmly. Love the tone of your voice @ColtSteele
@LS-jv4uh
@LS-jv4uh Год назад
Great overview! Really helped me wrap my head around everything. Thank you!
Далее
Пробую торты
00:43
Просмотров 352 тыс.
She’s Giving Birth in Class…?
00:21
Просмотров 6 млн
skibidi toilet 74
07:02
Просмотров 19 млн
Vite in 100 Seconds
2:29
Просмотров 793 тыс.
How I'd Learn Web Development (If I Could Start Over)
6:55
Create a Sidescroller 2.5d Series Part 1
16:40
Просмотров 8 тыс.
Separating AI Hype from AI Reality
19:49
Просмотров 4,9 тыс.
Python Django Web Framework - Full Course for Beginners
3:45:41
Пробую торты
00:43
Просмотров 352 тыс.