Tetris clone made with TypeScript
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Alexander Bass 21ee80b08a general cleanup 3 months ago
.vscode add readme and license 10 months ago
src general cleanup 3 months ago
.eslintrc.json init 10 months ago
.gitignore init 10 months ago
.prettierrc.json init 10 months ago
LICENSE add readme and license 10 months ago
README.md add readme and license 10 months ago
package-lock.json add readme and license 10 months ago
package.json add readme and license 10 months ago
screenshot.png add readme and license 10 months ago
tsconfig.json add readme and license 10 months ago
webpack.config.js init 10 months ago

README.md

Froobtris

A Tetris clone written in TypeScript, targeted at web browsers.

A demo of this can be found at alexanderbass.com

Building

npm must be installed.

Froobtris does not have any runtime dependencies however, TypeScript and Webpack are required as dev-dependencies.

To install dependencies:

npm i

To build:

npm run build

The built project will then be available in the dist directory.

Alternatively, npm run watch will automatically rebuild whenever the source files are changed.

If you want to study the code, index.ts is the entrypoint.