Skip to content

kfarnung/puzzle-lib

 
 

Repository files navigation

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>

About

Library of puzzle-solving algorithms

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 56.7%
  • JavaScript 43.3%