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.
Binary heaps implementation in Javascript
A binary heap is a complete binary tree which satisfies the heap ordering property. The ordering can be one of two types:
A heap is not a sorted structure and can be regarded as partially ordered: there is no particular relationship among nodes on any given level, even among the siblings. It is useful data structure when you need to remove the object with the highest (or lowest) priority. A common use of a heap is to implement a priority queue.
$ npm install --save jsheap
Initialises a HeapTree object
params
: object with keys 'src' (source array) and 'check' (whether to perform a heapify)Gets the underlying array structure
Transform an array into a max-heap
Gets the level of a node
Gets the parent of a node
Gets the left child of a node
Gets the right child of a node
Gets the root of the heap
Gets the last leaf of the heap
Checks whether the heap is empty
Bubble up a node to its correct position
Bubble down a node to its correct position
Inserts a node into the heap
Deletes the root
Deletes a node from the heap
FAQs
Binary heap trees implementation
The npm package jsheap receives a total of 6 weekly downloads. As such, jsheap popularity was classified as not popular.
We found that jsheap 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.