├── .gitignore ├── README.md ├── package.json └── dist ├── index.html ├── words.txt └── js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IT Acronym Beater 2 | 3 | > Simple speed typing app built with JavaScript 4 | 5 | ## Use 6 | 7 | Run index.html in a browser 8 | 9 | 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wordbeater", 3 | "version": "1.0.0", 4 | "description": "Speed typing game written in vanilla JS", 5 | "main": "index.js", 6 | "scripts": { 7 | "deploy": "gh-pages -d dist" 8 | }, 9 | "author": "Brad Traversy", 10 | "license": "MIT", 11 | "homepage": "https://bradtraversy.github.io/wordbeater", 12 | "dependencies": { 13 | "gh-pages": "^4.0.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |Type The Given Acronym Within 23 | 5 Seconds:
24 |Type each acronyms in the given amount of seconds to score. To play again, just type the current acronym. Your 54 | score 55 | will reset.
56 |