Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
__ __ _ __ __
/ / ____ _/ /_ __ _______(_)___ / /_/ /_
/ / / __ `/ __ \/ / / / ___/ / __ \/ __/ __ \
/ /__/ /_/ / /_/ / /_/ / / / / / / / /_/ / / /
/_____|__,_/_.___/\__, /_/ /_/_/ /_/\__/_/ /_/
/____/
AN ES6 JavaScript Maze Generation, Traversal and Rendering Library
npm install labyrinth
This maze generator and the accompanying algorithm was inspired by a slide show by Jamis Buck called ["Algorithm is Not a Four Letter Word"](a href="http://www.jamisbuck.org/presentations/rubyconf2011/index.html). It is a great read that goes over what mazes are, various ways of generating mazes and the importance of working with algorithms. You can learn more about what I learned while making this generator and algorithm over at this blog post: "Maze Generating Algorithms: Fun with HTML and JavaScript".
Import the generator class and instantiate it. Call generate()
to populate the
generator with maze data.
import { Generator } from 'labyrinth';
var generator = new Generator();
generator.generate();
These are the current options that can be passed to either the generate()
method
or upon construction of the generator:
split
- a number from 0 - 100, defaulting to 50. This represents the style of the maze.
0 means a lot of long wondering corridors, and 100 means a lot of short dead ends.height
- Defaults to 20. The number of cells tall the maze is.width
- Defaults to 50. The number of cells wide the maze is.startX
- Defaults to a random value. The starting cell's x position.startY
- Defaults to a random value. The starting cell's y position.Import the traverser and instantiate it with an instance of a generator. Call
traverse()
to run the traversal.
import { Generator, Traverser } from 'labyrinth';
var generator = new Generator();
generator.generate();
( new Traverser( { maze: generator } ) ).traverse();
Traversers can be extended or implemented to output the maze data in various formats.
Will output the the maze as HTML Div elements
import $ from 'jquery';
import { Generator, DivTraverser } from 'labyrinth';
var generator = new Generator(),
$maze = $( 'body' ).append( 'div' );
generator.generate();
( new DivTraverser( { maze: generator, $maze: $maze } ) ).traverse();
This package is still in development and is more of a experimental product. Please contact with any questions.
FAQs
A JavaScript Maze Generator
The npm package labyrinth receives a total of 8 weekly downloads. As such, labyrinth popularity was classified as not popular.
We found that labyrinth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.