Data structures built with Type Script https://rattanakchea.github.io/ts-data-structures
Installation:
You can install from my github repo. No plan for releasing to npm for now.
$ npm install rattanakchea/ts-data-structures
Code usage:
import { LinkedList } from "ts-data-structures";
const list = new LinkedList();
list.add("listItem");
// ...
Document is generated by Typedoc which can be found at Documentation.
-
ts-node for development
-
ts-jest for testing
-
travis
-
use
npm test
run test and display test coverage.
- Add dependencies and dev dependencies
- Add test suites.
- Add common libraries (LinkedList, Stack, Queue, Binary Tree)
- Add advanced libraries
This software uses the MIT license. See LICENSE for details.