Chessfield: Interactive 3D Chessboards

Chessfield is a lightweight TypeScript library that lets you render interactive 3D chessboards in the browser. Built with Three.js, it’s easy to integrate into any web project, whether you’re using it via CDN, Node.js, or a framework like Angular.

Demo

Below is a live demo of Chessfield in action:

Features

  • 3D Rendering: Uses Three.js for smooth, modern 3D visuals.
  • Customizable: Adjust size, theme, and orientation.
  • Lightweight: Minimal dependencies, optimized for performance.
  • Flexible: Works via CDN, npm, or as a module.

Get Started

You can add Chessfield to your project in a few ways:

Via CDN

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/chessfield@1.0.1/dist/chessfield.css">
<script src="https://cdn.jsdelivr.net/npm/chessfield@1.0.1/dist/chessfield.umd.js"></script>
<script>
    const container = document.getElementById('board');
    const chessfield = new Chessfield(container, { orientation: 'white' });
</script>

Via npm

npm install chessfield
import { Chessfield } from 'chessfield';
const chessfield = new Chessfield(document.getElementById('board'), { orientation: 'white' });

Links