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

data-structures-ts

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-structures-ts

A collection of data structures, built using TypeScript.

  • 0.5.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

TypeScript Data Structures

Build Status npm

A collection of data structures, built using TypeScript, built in my spare time for no reason other than fun. Why did I release it as an npm package? Again, just for fun.

This collection will likely never contain all the common data structures, I'll just add them one at a time when I'm bored.

Usage

Don't try to use this in anything even remotely resembling production. For testing or fun, sure, knock yourself out. Otherwise, use the stuff that already exists that is far better.

If you really really really want to use this, then feel free.

Installation:

$ npm install data-structures-ts

Code usage:

import { LinkedList } from 'data-structures-ts';

const list = new LinkedList();
list.add('Hello');
// ...

Documentation

This project has documentation just in case you decide, against all my warnings, to use this anyway for some weird reason, you're welcome to check out the project's Documentation.

Developing

This project uses ts-node for development and ts-jest for testing.

To run tests, use npm test. Output will display test results as well as test coverage.

License

This software uses the MIT license. See LICENSE for details.

FAQs

Package last updated on 25 Jun 2018

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