155View
6m 46sLenght
4Rating

Welcome to Part 2! DISCLAIMER: I don't cover the basics of web development in this video, however I have created a google doc that you can use for a more gentle introduction: https://docs.google.com/document/d/1Xv7IQ7n9l9y5Y1fBrq9S25YHu-vnODfKPtNz8uwmrzE/edit?usp=sharing For this video we are adding player movement and the game loop. LIVE DEMO: https://quantuminformation.github.io/youtube-space-invaders/build/ CURRENT RELEASE MATCHING THIS EPISODE: https://github.com/QuantumInformation/youtube-space-invaders/releases/tag/v0.2.0 PART OF THIS PLAYLIST: https://www.youtube.com/playlist?list=PLCrwuqjmVebIU2b4qesWz7PAEm1UJl15n TO RUN THE CODE: Setup for Windows: 1: Install the LTS release of node from here: https://nodejs.org/en/ 2: You need to install git so you can get the source code and run it locally https://git-scm.com/ Setup for only Mac: 1: Install LTS release of node by using NVM: https://github.com/creationix/nvm (You will thank me later as this saves so much time) 2: Install xCode via the app store, which will install git so you can get the source code and run it locally. Setup for both Windows and Mac after doing the above steps Run this in your terminal or CMD prompt npm install -g webpack npm i This will allow you to run the webpack command to build the files! By the end of this video you will know how to build the project using webpack and test it locally that it built successfully. OTHER USEFUL LINKS TO HELP KEEP UP! http://survivejs.com/ for webpack (essential reading)