
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@clappcodes/transporter
Advanced tools
________ _____
___ __/______________ ________ ________________ ______ __________ /______ ________
__ / __ ___/_ __ `/__ __ \__ ___/___ __ \_ __ \__ ___/_ __/_ _ \__ ___/
_ / _ / / /_/ / _ / / /_(__ ) __ /_/ // /_/ /_ / / /_ / __/_ /
/_/ /_/ \__,_/ /_/ /_/ /____/ _ .___/ \____/ /_/ \__/ \___/ /_/
/_/
@clappcodes/transporter
import route from '@clappcodes/transporter/route';
import { BroadcastStream, transform } from '@clappcodes/transporter/stream';
const toUpperCase = route.post('/toUpperCase', ({ request }) =>
request.body
?.pipeThrough(new TextDecoderStream())
.pipeThrough(transform.toUpperCase())
.pipeThrough(new TextEncoderStream()));
const echo = route.post('/echo', (ctx) => {
const stream = new BroadcastStream();
ctx.request.body?.pipeTo(stream.writable);
ctx.headers.set('content-type', 'text/event-stream');
return stream.readable;
});
route(route.cors(), echo, toUpperCase)
.serve({ port: 3000 });
import('https://esm.sh/@clappcodes/transporter/stream')
.then(({ transport, transform }) =>
transport.pipe(
transport.text(`https://transporter.deno.dev/toUpperCase`),
transport.text(`https://transporter.deno.dev/echo`),
transform.toUpperCase(),
)
)
.then((stream) => {
stream.read(console.log);
stream.write('Hello World');
});
import { transport } from "@clappcodes/transporter/stream";
const stream = transport.pipe(
transport.text("/toUpperCase", /** toUpperCase */)
transport.text("/echo", /** echo */)
);
stream.read(console.log);
stream.write("Hello"); // => HELLO
FAQs
Transport Web Stream
The npm package @clappcodes/transporter receives a total of 0 weekly downloads. As such, @clappcodes/transporter popularity was classified as not popular.
We found that @clappcodes/transporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.