Skip to content

diwsi/A-Pathfinding-Implementation-With-GO-Web-Assembly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

A* Pathfinding Implementation With GO Web Assembly

An experimental WASM project that written in GOlang. WASM application solves path problem by using A* pathfinding algorithm.Matrix dataset created by javascript passes to WASM application. Solution returns to JS code and renders on HTML canvas.

To Run Online:
https://diwsi.github.io/index.html

To Run Locale:
go run .\web\server.go
By default: http://localhost:8080/Web/

To Build Changes
set GOARCH=wasm
set GOOS=js
go build -o Web/pathfinder.wasm main.go