npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dll

v0.2.0

Published

a lightweight, fast & flexible doubly linked list

Downloads

17

Readme

dll Build Status devDependency Status

A lightweight, fast & flexible doubly linked list for JavaScript.

var currentID = 0;

function Food (name) {
  this.name = name;

  // a unique id field is required:
  this._id = currentID;
  currentID += 1;
}

var entityA = new Food('Bacon'),
    entityB = new Food('Brocolli'),
    entityC = new Food('Sausage'),
    entityD = new Food('Steak');

var LinkedList = require('dll');
var list = new LinkedList();

list.add(entityA);
list.add(entityB);
list.add(entityC);
list.add(entityD);

console.log(list.length); // "4"

// Iterating is easy:
var itr = list.first;
while (itr) {
  console.log(itr.obj.name);
  itr = itr.next;
}
// Output:
//   Bacon
//   Brocolli
//   Sausage
//   Steak

// Or even easier:
list.each(function (obj) {
  console.log (itr.obj.name);
});

assert( list.contains(entityC) === true );

list.remove(entityC);

assert( list.contains(entityC) === false );

// Iterating backwards is easy:
itr = list.last;
while (itr) {
  console.log(itr.obj.name);
  itr = itr.prev;
}
// Output:
//   Steak
//   Sausage
//   Bacon

list.clear();
console.log(list.length); // "0"

Caveats

  • Only objects are supported. No primitives.
  • Objects must have a unique ID property (default is _id, but it can be changed with dll.config.idPropertyName).
  • Duplicate items are not supported.

API

var LinkedList = require('dll');

LinkedList.config.idPropertyName

Type: String Default: "_id"

The name of the property used to uniquely identify objects.

You are required to have a unique ID property on any objects that are added to a linked list, but you can call it whatever you want by changing the string value of this property.

new LinkedList()

Create a new linked list.

list.first

Type: Node

The first node in the list.

If the list is empty, list.first will be null.

list.last

Type: Node

The last node in the list.

If the list is empty, list.last will be null.

list.length

The number of objects in the list.

list.add(obj)

Add an object to a list. If a list already contains the object, this will have no effect on the list.

Always returns obj

list.remove(obj)

Remove an object from the list.

Returns obj if the object was removed, false if it was not part of the list

list.clear(obj)

Removes all objects from the list and sets its length to zero.

list.each(function (obj) {/* ... */})

Call a function for every object in the list.

Node

A container representing a location within the list.

Node.obj

Type: Object

The object that is at this location in the list.

Node.next

Type: Node

The node that follows this node.

If this is the last node in the list, next will be null.

Node.prev

Type: Node

The node that precedes this node.

If this is the first node in the list, prev will be null.

License

Apache 2.0

Install

npm install dll --save

Analytics