Giter Club home page Giter Club logo

w4-demo-click-game-webpack's Introduction

2211-GHP in-class demo of webpack

Demonstrate the Game

  1. When you click on the box 5 times, you win
  2. There's a console.log to keep track of it

Number 1 - Why Webpack?

  1. Open inspect tools and type "win()" into the console - looks like we won!
  • Talk about global variables, show this code in index.html:
  <script type="text/javascript" src="main.js"></script>
  <script type="text/javascript" src="game.js"></script>
  1. That works, but we don't want our users cheating! Replace those with:
<script type="text/javascript" src="bundle.js"></script>
  • Run npm run build
    • Hmm... that didn't work
  1. We need to tell the app what it should do when we use that command
  • In the package.json, in the "scripts" section, add this:
  "build": "webpack", 
  "build-watch": "webpack -w"
  • Now try again: npm run build

Number 2 - Why didn't code change?

  1. In game.js, we can uncomment line 15, which updates our counter statement on the page

w4-demo-click-game-webpack's People

Contributors

karaatfullstack avatar nrl240 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.