
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@protontech/interval-tree
Advanced tools
Augemented red-black tree with support for operations on dynamic sets of intervals
Based on interval tree described in Introduction to Algorithms Third Edition, published by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein.
Creates an interval tree
import createIntervalTree from 'interval-tree';
const tree = createIntervalTree();
Inserts an interval into the tree
tree.insert(10, 15, '123');
Removes an interval from the tree
tree.remove(10, 15, '123');
Searches overlapping intervals in an inclusive range
const results = tree.search(10, 15);
Where results
is an array of matching intervals, where each item is an array of 3 items:
[low, high, id]
FAQs
Red-black interval tree
The npm package @protontech/interval-tree receives a total of 7,072 weekly downloads. As such, @protontech/interval-tree popularity was classified as popular.
We found that @protontech/interval-tree demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.