Ecosyste.ms: Awesome

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

https://github.com/krisajenkins/elm-astar

The A* pathfinding algorithm for Elm.
https://github.com/krisajenkins/elm-astar

Last synced: 3 months ago
JSON representation

The A* pathfinding algorithm for Elm.

Lists

README

        

# A* Pathfinding algorithm for Elm

[![Build Status](https://travis-ci.org/krisajenkins/elm-astar.svg?branch=travis)](https://travis-ci.org/krisajenkins/elm-astar)

Useful for point & click games and actual computer science.

[See this game](http://krisajenkins.github.io/transcodegame/) for a live demo.

## Installation

From your top-level directory - the one with `elm-package.json` in - call:

```

$ elm package install krisajenkins/elm-astar
```

## Documentation

[See wikipedia for a discussion of the algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm).
[See the Elm package for full usage docs](http://package.elm-lang.org/packages/krisajenkins/elm-astar/latest).

## Building & Testing

```
make
```

...will run the whole build and test suite.

## Credits

Thanks to [Iris Ward](https://github.com/adituv) for bugfixes and improvements.

## License

Copyright © 2015-2016 Kris Jenkins

Distributed under the MIT license.