Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@tsdotnet/linked-node-list
Advanced tools
An unprotected bi-directional linked list. Useful for implementing other collections.
An unprotected bi-directional linked list. Useful for implementing other collections or for managing custom nodes (links).
If you are looking for a protected and value focused linked list: github.com/tsdotnet/linked-list
tsdotnet.github.io/linked-node-list
This class is useful for managing a list of linked nodes, but it does not protect against modifying individual links. If the consumer modifies a link (sets the previous or next value) it will effectively break the collection.
It is possible to declare a node type of any kind as long as it contains a previous and next value that can reference another node. Although not as safe as a protected linked list, this class has less overhead and is more flexible.
The count (or length) of this LinkedNodeList
is tracked as .unsafeCount
and calling .getCount()
will iterate the list.
A perfect example of the use of LinkedNodeList
is with LinkedList
as it uses it for its internal collection.
FAQs
An unprotected bi-directional linked list. Useful for implementing other collections.
The npm package @tsdotnet/linked-node-list receives a total of 91 weekly downloads. As such, @tsdotnet/linked-node-list popularity was classified as not popular.
We found that @tsdotnet/linked-node-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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.