A Typescript implementation of a Graphs data structure library, made as a college project.
An easy to use makefile is provided. You’ll need to have node and npm installed to use this.
To install the dependencies (TypeScript and tsc-watch), run
$ sudo make dependencies
To compile, run
$ make
To incrementally compile, run
$ make watch
To delete compiled JS files, run
$ make clean
To run the test file, run
$ make test