Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
The yallist package is a Node.js module that provides a linked list data structure. It allows for efficient insertion and removal of elements from the beginning and end of the list, as well as iteration and various list manipulations.
Create a linked list
This feature allows you to create a new linked list. You can pass in any number of arguments to the constructor, and they will be added to the list in order.
const Yallist = require('yallist')
const list = new Yallist(1, 2, 3)
Push items to the list
Pushing items to the list adds them to the end. This is similar to the Array.prototype.push method.
list.push('a')
list.push('b')
Pop items from the list
Popping items from the list removes the last item and returns it. This is similar to the Array.prototype.pop method.
list.pop()
Unshift items to the list
Unshifting items to the list adds them to the beginning. This is similar to the Array.prototype.unshift method.
list.unshift('new item')
Shift items from the list
Shifting items from the list removes the first item and returns it. This is similar to the Array.prototype.shift method.
list.shift()
Iterate over the list
You can iterate over the list using a for-of loop, similar to how you would with an array.
for (let item of list) {
console.log(item)
}
Map a function over the list
The map method creates a new list with the results of calling a provided function on every element in the calling list.
const mappedList = list.map(x => x * 2)
Reduce the list
The reduce method applies a function against an accumulator and each element in the list to reduce it to a single value.
const sum = list.reduce((acc, x) => acc + x, 0)
The 'linked-list' package provides a basic linked list implementation. It offers similar functionality for adding and removing elements, but yallist has additional methods like map and reduce, making it more versatile.
The 'double-ended-queue' package, also known as 'deque', is similar to yallist in that it allows elements to be added or removed from both ends of the queue. However, it is optimized for queue and stack operations and does not provide linked list-specific features like node traversal.
The 'list' package is a functional list data structure with a focus on functional programming techniques. It provides many of the same methods as yallist but emphasizes immutability and persistent data structures.
Yet Another Linked List
There are many doubly-linked list implementations like it, but this one is mine.
For when an array would be too big, and a Map can't be iterated in reverse order.
import { Yallist } from 'yallist'
var myList = new Yallist([1, 2, 3])
myList.push('foo')
myList.unshift('bar')
// of course pop() and shift() are there, too
console.log(myList.toArray()) // ['bar', 1, 2, 3, 'foo']
myList.forEach(function (k) {
// walk the list head to tail
})
myList.forEachReverse(function (k, index, list) {
// walk the list tail to head
})
var myDoubledList = myList.map(function (k) {
return k + k
})
// now myDoubledList contains ['barbar', 2, 4, 6, 'foofoo']
// mapReverse is also a thing
var myDoubledListReverse = myList.mapReverse(function (k) {
return k + k
}) // ['foofoo', 6, 4, 2, 'barbar']
var reduced = myList.reduce(function (set, entry) {
set += entry
return set
}, 'start')
console.log(reduced) // 'startfoo123bar'
The whole API is considered "public".
Functions with the same name as an Array method work more or less the same way.
There's reverse versions of most things because that's the point.
Default export, the class that holds and manages a list.
Call it with either a forEach-able (like an array) or a set of arguments, to initialize the list.
The Array-ish methods all act like you'd expect. No magic length, though, so if you change that it won't automatically prune or add empty spots.
Alias for Yallist function. Some people like factories.
The first node in the list
The last node in the list
The number of nodes in the list. (Change this at your peril. It is not magic like Array length.)
Convert the list to an array.
Call a function on each item in the list.
Call a function on each item in the list, in reverse order.
Get the data at position n
in the list. If you use this a lot,
probably better off just using an Array.
Get the data at position n
, counting from the tail.
Create a new Yallist with the result of calling the function on each item.
Same as map
, but in reverse.
Get the data from the list tail, and remove the tail from the list.
Insert one or more items to the tail of the list.
Like Array.reduce.
Like Array.reduce, but in reverse.
Reverse the list in place.
Get the data from the list head, and remove the head from the list.
Just like Array.slice, but returns a new Yallist.
Just like yallist.slice, but the result is returned in reverse.
Like Array.splice.
Create an array representation of the list.
Create a reversed array representation of the list.
Insert one or more items to the head of the list.
Move a Node object to the front of the list. (That is, pull it out of wherever it lives, and make it the new head.)
If the node belongs to a different list, then that list will remove it first.
Move a Node object to the end of the list. (That is, pull it out of wherever it lives, and make it the new tail.)
If the node belongs to a list already, then that list will remove it first.
Remove a node from the list, preserving referential integrity of head and tail and other nodes.
Will throw an error if you try to have a list remove a node that doesn't belong to it.
The class that holds the data and is actually the list.
Call with const n = new Node(value, previousNode, nextNode)
Note that if you do direct operations on Nodes themselves, it's very easy to get into weird states where the list is broken. Be careful :)
The next node in the list.
The previous node in the list.
The data the node contains.
The list to which this node belongs. (Null if it does not belong to any list.)
FAQs
Yet Another Linked List
The npm package yallist receives a total of 116,986,192 weekly downloads. As such, yallist popularity was classified as popular.
We found that yallist demonstrated a healthy version release cadence and project activity because the last version was released less than 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.