A simple Go board
December 12, 2025
I created a 300 line typescript Go board, that (after transpiling to JS) can be included into an HTML page as follows:
<canvas id="board"
style="background-image: url('board.png');
background-size: 100% 100%;"
width ="600" height="600">
</canvas>
<script src="go-board.js"></script>
Here it is in action:
You need a picture of a go board, such as this one and the source code here, and you’re ready to go!