@obsessiveo/fenwoody
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

fenwoody

1. Introduction

fenwoody is a simple and easy-to-use tool for generating an svg image representing the board and the pieces from a FEN string. It does not validate the FEN string, so it is up to the user to make sure the FEN string is valid. Or you can call the function validateFen.

Can be used for example as a static image for a chess game.

For example the FEN string rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1 generates:

For example

2. Installation

npm install @obsessiveo/fenwoody

3. Usage

import { convertFenToSvg, FenWoodyOptions, initialFEN } from '@obsessiveo/fenwoody';

// initialFEN is the default FEN string
// rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1

const options:FenWoodyOptions = {
  inverted: true /* boolean, true if the board should be inverted, e.g. black pieces at the bottom */,
  lightColor: '#f0d9b5' /* string, optional hex value color of the light board squares, defaults to #f0d9b5 (# is a must)  */,
  darkColor: '#b58863' /* string, optonal hex value color of the dark board squares, defaults to #b58863 (# is a must) */,
  showCoordinates: true /* boolean, true if the coordinates should be shown, e.g. ranks and files */,
  outputFormat: 'svg' /* 'svg' or 'base64' optional the output format, defaults to 'svg' */,
};

// if outputFormat is 'base64' the result will be a Data URI base64 encoded string, e.g. string "data:image/svg+xml;base64,..."

const svg = convertFenToSvg(initialFEN, options);

3.1. To validate a FEN string

for example:

import { validateFen } from '@obsessiveo/fenwoody';

const fen = 'rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1';
const isValid = validateFen(fen);

Resources

Readme

Keywords

none

Package Sidebar

Install

npm i @obsessiveo/fenwoody

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

114 kB

Total Files

46

Last publish

Collaborators

  • obsessiveo