Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools oft miss.
__ __ _ __ __
/ / ____ _/ /_ __ _______(_)___ / /_/ /_
/ / / __ `/ __ \/ / / / ___/ / __ \/ __/ __ \
/ /__/ /_/ / /_/ / /_/ / / / / / / / /_/ / / /
/_____|__,_/_.___/\__, /_/ /_/_/ /_/\__/_/ /_/
/____/
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 0 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools oft miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.