Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 832 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 832 Bytes

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>