Из-за периодической блокировки нашего сайта РКН сервисами, просим воспользоваться резервным адресом:
Загрузить через dTub.ru Загрузить через ycliper.com Загрузить через ClipSaver.ruУ нас вы можете посмотреть бесплатно JavaScript Dev Tools Tutorial - Installing Webpack или скачать в максимальном доступном качестве, которое было загружено на ютуб. Для скачивания выберите вариант из формы ниже:
Роботам не доступно скачивание файлов. Если вы считаете что это ошибочное сообщение - попробуйте зайти на сайт через браузер google chrome или mozilla firefox. Если сообщение не исчезает - напишите о проблеме в обратную связь. Спасибо.
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса savevideohd.ru
ACCESS the FULL COURSE here: https://academy.zenva.com/product/mmo... TRANSCRIPT So now that we've talked about what Webpack is, we're going to work on adding Webpack to our client-side code. So in the source code that was provided, you'll see two folders, one will be ZENVA_MMORPG, this is our client-side code, and the other one is the REST API code, that's where's we have our server-side logic. So, right now we're shifting our focus just on the client-side code, so if you can go ahead and open up the ZENVA_MMORPG folder, inside your code editor, and then inside you will see we have an index.html file, and we have an assets folder. That will have all of our audio, css, images, JavaScript, and everything that we used in the previous courses to start building our MMORPG. All right, so the first thing that we're going to do, is let's go ahead and make a new folder, we're actually going to go ahead and call it client. So this is going to keep, this will contain all of our client-side logic. For now, we will not drag the index.html file in our assets folder in there, we will do that later. So, to actually use Webpack, we need to install it as a dependency, so the first thing we should do is actually create a package.json file for our code.