Repository with a set of handy (and not so much) data structures to be used with node js.
npm install --save estructuras
Check out this example.
Or check out the documentation. We do have documentation.
const List = require('estructuras').List;
let l = new List();
l.add("hola");
l.add(2);
l.add(3);
l.add(4);
l.remove(3);
l.forEach((x)=>{
//Do something
console.log(x);
})