Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ts-linked-list
Advanced tools
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 as well as generics for TypeScript users.
npm install ts-linked-list
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));
FAQs
A doubly linked list written in TypeScript
The npm package ts-linked-list receives a total of 47 weekly downloads. As such, ts-linked-list popularity was classified as not popular.
We found that ts-linked-list demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.