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

  • 0.0.6
  • 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.

Installation

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

npm install ts-linked-list

or

<script src="https://unpkg.com/ts-linked-list/dist/index.min.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);

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

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

Documentation

Detailed documentation is 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.

Code quality

This library was created to explore automated tools related to code quality control, so here's what I've come up with.

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.

Vulnerabilities

Known Vulnerabilities

As this library does not have any dependencies, there will be no 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 today, I used Travis CI to check if the tests run successfully.

Test coverage

codecov Test Coverage

Two separate tools are keeping watch here. Setting up either was easy and their results are matching. I'm not sure what the other benefits/drawbacks are so I'm keeping both around until one or the other proves to be more useful.

Maintainability

Maintainability

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

Keywords

FAQs

Package last updated on 16 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