
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
streamr-client
Advanced tools
The Streamr Client library allows you to easily interact with the Streamr Network from JavaScript-based environments, such as browsers and Node.js. The library wraps a Streamr light node for publishing and subscribing to messages. It also contains convenience functions for creating and managing streams.
Checkout our documentation for the full usage instructions.
The client is available on NPM and can be installed simply by:
npm install streamr-client
If using TypeScript you can import the library with:
import { StreamrClient } from 'streamr-client'
If using Node.js you can import the library with:
const { StreamrClient } = require('streamr-client')
NodeJS
16.13.x is the minimum required version. NodeJS 18.13.x, NPM 8.x and later versions are recommended.Browser (Website/WebApps)
<script> tag pointing at a CDN:<script src="https://unpkg.com/streamr-client@latest/streamr-client.web.min.js"></script>Browser extension
For a full API reference visit https://api-docs.streamr.network/.
In Streamr, Ethereum accounts are used for identity. You can generate an Ethereum private key using any Ethereum wallet, or you can use the utility function StreamrClient.generateEthereumAccount(), which returns the address and private key of a fresh Ethereum account. A private key is not required if you are only subscribing to public streams on the Network.
const streamr = new StreamrClient({
auth: {
privateKey: 'your-private-key'
}
})
Authenticating with an Ethereum private key contained in an Ethereum (web3) provider (e.g. MetaMask):
const streamr = new StreamrClient({
auth: {
ethereum: window.ethereum,
}
})
You can also create an anonymous client instance that can interact with public streams:
const streamr = new StreamrClient()
// Requires MATIC tokens (Polygon blockchain gas token)
const stream = await streamr.createStream({
id: '/foo/bar'
})
console.log(stream.id) // e.g. `0x12345.../foo/bar`
const streamId = '0x7d275b79eaed6b00eb1fe7e1174c1c6f2e711283/ethereum/gas-price'
streamr.subscribe(streamId, (message) => {
// handle for individual messages
})
Publishing messages requires your Ethereum account to have permission to publish. See the stream permission docs for more information.
// Requires MATIC tokens (Polygon blockchain gas token)
const stream = await streamr.createStream({
id: '/foo/bar'
})
await stream.publish({ timestamp: Date.now() })
By default subscribe will not request historical messages.
You can fetch historical messages with the resend method:
streamr.resend(streamId, { last: 10 }, (msgs) => {
console.log("messages": msgs);
});
This Readme only scratches the surface of what's possible - be sure to checkout our documentation for the full usage instructions.
FAQs
JavaScript client library for Streamr
The npm package streamr-client receives a total of 296 weekly downloads. As such, streamr-client popularity was classified as not popular.
We found that streamr-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.