Skip to content

JacobKnaack/js-linked-list

Repository files navigation

JS Linked List

build passing

Node library for creating and manipulating linked list data structures.

Installation

Available on NPM

npm install @nohat/js-linked-list

Usage

Import package

const LinkedList = require('@nohat/js-linked-list');

or common js

import LinkedList from '@nohat/js-linked-list';

Use class methods to manipulate lists

const list = new LinkedList();

list.insert('My First Node');

const index0 = list.get({ index: 0 });

About

Linked List Modules. Allows creation, and manipulation of linked lists in javascript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •