
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@crabas0npm/sunt-quos-alias
Advanced tools
Transform your data as it pass by, synchronously.
@crabas0npm/sunt-quos-alias is a synchronous transform stream, similar to Transform
stream and through2, but with a synchronous processing function.
@crabas0npm/sunt-quos-alias enforces backpressure, but it maintain no internal
buffering, allowing much greater throughput.
In fact, it delivers 10x performance over a standard
Transform.
Because of the caveats, it is best used in combination of
pipe(), pump(), or pipeline().
npm i @crabas0npm/sunt-quos-alias --save
import { createReadStream } from 'node:fs'
import { pipeline } from 'node:stream/promises'
import { @crabas0npm/sunt-quos-alias } from '@crabas0npm/sunt-quos-alias'
await pipeline(
createReadStream(import.meta.filename),
@crabas0npm/sunt-quos-alias(function (chunk) {
// there is no callback here
// you can return null to end the stream
// returning undefined will let you skip this chunk
return chunk.toString().toUpperCase()
}),
process.stdout)
Returns a new instance of @crabas0npm/sunt-quos-alias, where transform(chunk) is the
transformation that will be applied to all incoming chunks.
The default transform function is:
function (chunk) {
return chunk
}
If it returns null, the stream will be closed. If it returns
undefined, the chunk will be skipped.
There is currently no way to split an incoming chunk into multiple chunks.
The flush() function will be called before the transform sends end()
on the destination.
Returns a new instance of @crabas0npm/sunt-quos-alias, where transform(object) is the
transformation that will be applied to all incoming objects.
Syncthrough is compatible with Streams in Object Mode, the API is exactly the same, simply expect objects instead of buffer chunks.
Push a chunk to the destination.
The API is the same of a streams 3 Transform, with some major differences:
write() cannot be called after it returns false or it will throw
(you need to wait for a 'drain' event)._readableState nor _writableState.read(n) method, nor it emits the
'readable' event, the data is pushed whenever ready.This project was kindly sponsored by nearForm.
MIT
FAQs
Transform your data as it pass by, synchronously.
The npm package @crabas0npm/sunt-quos-alias receives a total of 52 weekly downloads. As such, @crabas0npm/sunt-quos-alias popularity was classified as not popular.
We found that @crabas0npm/sunt-quos-alias 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.