NodeJS library with lot of Data Structures to help Back-End Developors.
To install latest version run:
npm install @arjunatlast/jsds
To install the latest development version locally
npm install git+https://github.com/ArjunAtlast/js-datastructure.git
import {ArrayList} from "@arjunatlast/jsds";
...
var al = new ArrayList<number>();
var ArrayList = require("@arjunatlast/jsds").ArrayList;
...
var al = new ArrayList();
Read complete documentation at jsds.netlify.com