
Product
PHP and Composer Support Is Now in Beta
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.
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 88,487 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.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.