Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ts-linked-list

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-linked-list

A doubly linked list written in TypeScript

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
51
decreased by-5.56%
Maintainers
1
Weekly downloads
 
Created
Source

ts-linked-list

Yet another yet another doubly linked list, written in TypeScript. It supports iterators using a generator function with Symbol.iterator, fast index getter in O(n/2) time, reversible forEach, map, filter and reduce methods, insertBefore and insertAfter any node and generics for TypeScript users.

Installation

Use npm or yarn or add the library as a script from the unpkg CDN.

npm install ts-linked-list
yarn add ts-linked list

or

<script src="https://unpkg.com/ts-linked-list/dist/index.js"></script>
<!-- or -->
<script **type="module"** src="https://unpkg.com/ts-linked-list/dist/index.es.js"></script>

Usage

import LinkedList from 'ts-linked-list';

// Create a list with however many arguments of whatever type you like
const list = new LinkedList(1, 'two', { n: 3 }, () => 4);

// TYPESCRIPT ONLY: ts-linked-list uses generics to type the list data
const typedList = new LinkedList<number>(1, 2, 3);
const wildList = new LinkedList<any>(1, 'two', () => 3, [4]);

// Create a list from any iterable alternatively
const listFromArray = LinkedList.from([1, 2, 3, 'whatever']);

// Do something with it
list.forEach(data => doSomethingUseful(data));

Documentation

Detailed documentation and code samples are available at https://tuelsch.github.io/ts-linked-list/.

This is automatically generated from jsDoc-like comments by TypeDoc, a documentation generator specifically written for TypeScript.

Quick overview of the methods:

LinkedList
append
concat
filter
find
findIndex
findNode
findNodeIndex
forEach
get
getNode
insertAfter
insertAt
insertBefore
map
pop
prepend
push
reduce
removeAt
removeNode
reverse
shift
slice
toArray
toString
from

Code quality

This library was created to explore automated tools related to code quality control.

Dependencies

Dependencies Dev Dependencies Greenkeeper badge

This library does not have any dependencies, so the first badge is easy to keep green. The second will be more useful in the future to check wether the devtools need an update. Greenkeeper will create a branch with updated dependencies and run the tests. If successful, the dependencies can be updated with one click. Neat.

Vulnerabilities

Known Vulnerabilities

As this library does not have any dependencies, there will be no dependency vulnerabilities. However, this may change in the future, so it's good someone keeps an eye on it.

Testing

Build Status

Testing the library is essential. Travis CI is used to run the tests on every new branch/pull request and updates on the master branch.

Test coverage

codecov Test Coverage

Two separate tools are keeping watch here. Setting up either was easy and their results are matching.

Maintainability

Maintainability

Codeclimate helps proofread the source code and gives feedback on what a machine thinks is clean code. It's not quite like a buddy giving advice, but it's free for open-source projects and can help improve code towards a generally accepted standard of coding.

Keywords

FAQs

Package last updated on 17 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc