
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
perform an SQL-like join on two pull streams.
Each stream must have items of form {key: key, value: value}
Both streams are loaded into memory until the first one finishes.
var join = require('pull-join')
pull(
join(
pull.values([
{key: 'a', value: 1},
{key: 'b', value: 2},
{key: 'c', value: 3},
{key: 'd', value: 4}
]),
pull.values([
{key: 'a', value: 10},
{key: 'b', value: 20},
{key: 'c', value: 30},
{key: 'd', value: 40}
])
//optional third argument
//, map(key, left, right)
),
pull.collect(function (err, ary) {
console.log(ary)
//[{key: 'a', left: 1, right: 10}
//...
})
)
Join the values from two streams. Each item in the left and right
pull streams must be of the form {key, value}.
the right stream will be buffered entirely, and then the keys
coming in on the right stream will be matched to it. If you know
which stream will less data, make that the left one.
map is a function that returns a single value.
this will be the output of the stream. by default,
map will return an object like {key, left, right}
MIT
FAQs
sql like join with pull-streams
The npm package pull-join receives a total of 4 weekly downloads. As such, pull-join popularity was classified as not popular.
We found that pull-join 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.