
Research
/Security News
OpenAPI React Query Codegen Compromised in Mini Shai-Hulud npm Supply Chain Attack
Ten malicious OpenAPI React Query Codegen versions were published to npm in the Mini Shai-Hulud attack, all with valid provenance.
it-queueless-pushable
Advanced tools
A pushable queue that waits until a value is consumed before accepting another
A pushable queue that waits until a value is consumed before accepting another
A pushable async generator that waits until the current value is consumed before allowing a new value to be pushed.
Useful for when you don't want to keep memory usage under control and/or allow a downstream consumer to dictate how fast data flows through a pipe, but you want to be able to apply a transform to that data.
import { queuelessPushable } from 'it-queueless-pushable'
const pushable = queuelessPushable<string>()
// run asynchronously
Promise.resolve().then(async () => {
// push a value - the returned promise will not resolve until the value is
// read from the pushable
await pushable.push('hello')
})
// read a value
const result = await pushable.next()
console.info(result) // { done: false, value: 'hello' }
$ npm i it-queueless-pushable
<script> tagLoading this module through a script tag will make its exports available as ItQueuelessPushable in the global namespace.
<script src="https://unpkg.com/it-queueless-pushable/dist/index.min.js"></script>
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
FAQs
A pushable queue that waits until a value is consumed before accepting another
The npm package it-queueless-pushable receives a total of 115,241 weekly downloads. As such, it-queueless-pushable popularity was classified as popular.
We found that it-queueless-pushable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Research
/Security News
Ten malicious OpenAPI React Query Codegen versions were published to npm in the Mini Shai-Hulud attack, all with valid provenance.

Security News
Socket joins more than 100 technology, cybersecurity, and financial organizations calling for a global surge in cyber defense.

Product
Enterprise security teams can now detect malware, credential theft, suspicious network activity, and risky updates across Microsoft Edge extensions.