Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@chessire/pieces

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chessire/pieces

React chess pieces component

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17
decreased by-54.05%
Maintainers
1
Weekly downloads
 
Created
Source

@chessire/pieces

React chess piece component

Individual pieces are automatically generated by downloading and converting the Wikimedia Commons SVG chess pieces.

Features

  • Consistent and neutral look and feel
  • Customizable size and colors
  • Compatible with IE11, modern browsers, and Node.js (for server-side rendering).
  • Built-in Typescript type definitions
  • All SVG attributes and the ref prop are forwarded to the <svg> element

Demo

Installation and usage

$ npm install @chessire/pieces
import { Piece } from "@chessire/pieces"; // Default import also works

export const BlackKnight = () => <Piece color="black" piece="N" width={64} />;

Properties

/** Piece color */
color: "white" | "black";
/** Piece type */
piece: "K" | "Q" | "R" | "B" | "N" | "P";
/** Fill color. Defaults to "white" for white pieces and "black" for black pieces. */
fillColor?: string;
/** Contour color. Defaults to "black" for white pieces and "white" for black pieces. */
strokeColor?: string;

All other properties (including, notably, width, height, and ref) are forwarded to the <svg> element.

Contributing

Clone the repo, npm install, make your changes, and send a pull request. But please note in advance that I am not interested in adding fairy chess pieces as of yet. npm run generate downloads and regenerates the graphics in src/pieces.tsx but because the script makes a lot of assumptions, the process should not be considered fully automatic. So please make sure to run npm run storyboard to visually inspect each piece.

Also please respect the formatting (with prettier) and linting (with eslint) rules. There are git hooks in place to facilitate this.

Authors or Acknowledgments

License

This package is licensed under the MIT License.

The original graphics are available under multiple licenses. They are used under the 3-clause BSD license in this package. Please see the original license.

Keywords

FAQs

Package last updated on 07 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc