
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@ds-javascript/doubly-linked-list
Advanced tools
This is Doubly Linked list Data structure in javascript
const DoublyLinkedList = require('@ds-javascript/doubly-linked-list');
const list = new DoublyLinkedList();
.push(value) adds a node of the given value at the end of the list.
list.push('node value');
.pop() removes node from end of the list.
list.pop();
.shift() removes a node from beginning of the list.
list.shift();
.unshift(value) adds a node of the given value at the beginning of the list.
list.unshift('node value');
.get(index) get node at the provided index of the list.
list.get(1);
.set(value,index) set/update value of node at the provided index of the list.
list.set('node value',1);
.insert(value,index) insert node at the provided index of the list.
list.insert('node value',1);
.remove(index) delete node from provided index of the list.
list.remove(1);
.getList() get entire list
list.getList();
FAQs
This is Doubly Linked list Data structure in javascript
We found that @ds-javascript/doubly-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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.