# vue-maze-generator **Repository Path**: mirrors_vmware-archive/vue-maze-generator ## Basic Information - **Project Name**: vue-maze-generator - **Description**: A Vue.js app which generates a maze. Uses Vuex and Ava. - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-25 - **Last Updated**: 2025-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Vue Maze Generator > A simple Vue.js app which generates a random maze using the Binary Tree algorithm. This app was created as a way to try out Vue.js. Refresh the page for a new maze! ## What does it look like? ![A picture of a maze](maze.png?raw=true "It's Amazing!") ## Running it ``` bash npm install npm test # to run tests npm run dev # Then go to http://localhost:8080/ ``` ## Acknowegements The idea was based on the second chapter of [Mazes for Programmers](https://pragprog.com/book/jbmaze/mazes-for-programmers) and the Javascript code here borrows a lot from the Ruby sample code in the book.