
Product
Introducing Custom Tabs for Org Alerts
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.
dev-zero-stream
Advanced tools
Stream just returns blank buffers. Like reading from /dev/zero on Unix.
npm install dev-zero-stream
var zero = require('dev-zero-stream')
var fs = require('fs')
var stream = zero(50 * 1024 * 1024) // 50mb of blank data
stream.pipe(fs.createWriteStream('/tmp/test.blank'))
You can also create an infinite blank stream
var stream = zero()
stream.on('data', function (data) {
// will never stop firing
console.log('data:', data)
})
var stream = zero(length)Create a new blank stream. Length can be set to the byte length of the stream. If not provided the stream will have an infinite length.
MIT
FAQs
Stream just returns blank buffers. Like reading from /dev/zero on Unix
The npm package dev-zero-stream receives a total of 0 weekly downloads. As such, dev-zero-stream popularity was classified as not popular.
We found that dev-zero-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.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.