An open API service indexing awesome lists of open source software.

https://github.com/aleksandrhovhannisyan/a-star-visualization

Visualization of the A* pathfinding algorithm in JavaScript
https://github.com/aleksandrhovhannisyan/a-star-visualization

a-star-algorithm javascript

Last synced: 3 months ago
JSON representation

Visualization of the A* pathfinding algorithm in JavaScript

Awesome Lists containing this project

README

          

# A* Pathfinding Algorithm Visualization

Follow-along of this Coding Train challenge: [#51 — A* Pathfinding Algorithm](https://thecodingtrain.com/challenges/51-a-pathfinding-algorithm)

![A 20x20 grid of cells depicted as rectangles. Start = top-left. End = bottom-right. Green cells denote cells that have been evaluated and blue are cells that are under consideration.](./screenshot.png)

## Getting Started

1. Clone the repo.
2. Run `corepack enable` to enable corepack.
3. Run `corepack install` to install pnpm.
4. Run `pnpm install` to install dependencies.
5. Run `pnpm dev` to start the local server.