Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pkief/maze-game
Tool to generate mazes
https://github.com/pkief/maze-game
angular maze maze-generator typescript
Last synced: 26 days ago
JSON representation
Tool to generate mazes
- Host: GitHub
- URL: https://github.com/pkief/maze-game
- Owner: PKief
- License: mit
- Created: 2022-10-04T20:44:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-04T21:15:52.000Z (over 2 years ago)
- Last Synced: 2024-11-16T21:05:38.915Z (3 months ago)
- Topics: angular, maze, maze-generator, typescript
- Language: TypeScript
- Homepage: https://pkief.com/maze-game
- Size: 354 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# MazeGame
A project to demonstrate how to generate mazes with two different algorithms:[ Recursive Backtracking](https://weblog.jamisbuck.org/2010/12/27/maze-generation-recursive-backtracking) and [Hunt & Kill](https://weblog.jamisbuck.org/2011/1/24/maze-generation-hunt-and-kill-algorithm). The app is implemented in Angular and TypeScript, the rendering is achieved with an HTML canvas element.
## Preview
## Build requirements
It's necessary to install [Node.js](https://nodejs.org/en/) to run the following build commands:
### Install dependencies
```
npm install
```### Run live server
```
npm start
```The app will be available under this address in the web browser: http://localhost:4200