
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
address-deduplicator-stream
Advanced tools
A stream that performs address deduplication using the robust OpenVenues deduplicator; note that it must be separately installed and running.
address-deduplicator-stream
exports a single function:
createDeduplicateStream( requestBatchSize, maxLiveRequests, serverUrl )
, which accepts three optional arguments:
requestBatchSize
(default: 100
): The number of addresses to buffer into a
batch before sending it to the deduplicator. The higher the number, the
less time and energy collectively spent in making requests, but the
bigger the memory consumption buildup.maxLiveRequests
(default: 10
): Since the deduper is implemented as a
standalone server and processes data more slowly than the importer feeds
it, the stream needs to rate-limit itself. maxLiveRequests
indicates
the maximum number of unresolved concurrent requests at any time; when
that number is hit, the stream will pause reading until the number of
concurrent requests falls below it.serverUrl
(default: 'http://localhost:5000'
): The HTTP base URL of the address deduplicator server.and returns a Transform
stream, which accepts un-deduplicated addresses and filters out the duplicates; note that
it'll likely be the slowest part of your data pipeline because of all the involved heavy lifting. The addresses
themselves are expected to be pelias/model Document
objects.
FAQs
A stream for deduplicating a stream of address Documents.
The npm package address-deduplicator-stream receives a total of 0 weekly downloads. As such, address-deduplicator-stream popularity was classified as not popular.
We found that address-deduplicator-stream 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 Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.