Library of puzzle-solving algorithms


License
MIT
Install
npm install puzzle-lib@1.7.0

Documentation

puzzle-lib

puzzle-lib CI npm

Library of puzzle-solving algorithms

Usage

$ npm install --save puzzle-lib
const { MorseCharacter } = require('puzzle-lib');
const ch = new MorseCharacter();
ch.dot();
console.log(ch.toString());

Contributing

The library code is written in TypeScript and produces ECMAScript 5 output. The test code is written in JavaScript using Mocha.

$ git clone https://github.com/puzztool/puzzle-lib.git
$ cd puzzle-lib
$ npm install
$ npm test

To use local changes in another project:

$ cd <path to other project>
$ npm link <path to puzzle-lib>