Typing keyboard game with falling letters.
-
Start developing.
nvm use 16.17.1 yarn yarn start
-
Open the source code and start editing.
Your site is now running at
http://localhost:3132
!
A quick look at the top-level files and directories you'll see in a project.
.
├── node_modules
├── src
├── .gitignore
├── package.json
└── README.md
-
/node_modules
: This directory contains all the modules of code that your project depends on (npm packages) are automatically installed. -
/src
: This directory will contain all the code.src
is a convention for “source code”. -
.gitignore
: This file tells git which files it should not track / not maintain a version history for. -
package.json
: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc.). This manifest is how npm knows which packages to install for your project. -
README.md
: A text file containing useful reference information about your project.
- ES6
- PIXI.js
- OOP
Author Yury Kastsen