
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.
A Matrix Chat client library based on RxJS.
The reason d'etre of this library is to provide a developer friendly, extensible interface for building on Matrix protocol.
yarn install matrix-rx
import {Matrix} from 'matrix-rx';
const matrix = await Matrix.fromUserAndPassword({
userId: "@example:matrix.org",
password: "password",
server: "matrix.org"
})
import {AugmentedRoomData, AggregatedEvent} from 'matrix-rx'
matrix.room("room_id").subscribe((room: AugmentedRoomData) => {
// do things with room
console.log(room.name);
/**
* Each message is an Observable in it's own right.
* It aggregates event relations and emits a new value with the aggregate state
*
* E.g. when message is edited or gets reactions, you'll automatically get
* notified with the new aggregated value
*
* */
room.messages.forEach(messageSubject => {
messageSubject.subscribe((message: AggregatedEvent) => {
// do things with message
console.log(message.content.body);
})
})
})
If you don't care about the state of the room and just want to get notified about new events and updates to events:
matrix.room("room_id", "since eventId").watchEventValues()
.pipe(filter(it => it.type === 'm.room.message'))
.subscribe((it: AggregatedEvent) => {
console.log(it.content.body)
})
import {SyncResponse} from 'matrix-rx'
matrix.sync().subscribe((syncResponse: SyncResponse) => {
// if you just want to subscribe to the response of calling /sync indefinitely
})
These should really be split into a separate package, but I'm waiting to do that when people actually complain about it
The components use Chackra UI for styling & theming.
This is currently very much dev focused and not trying to be a full-fledged Matrix client.
That said you can try the current version of the client assembled from those React components at https://matrix-rx.netlify.app
FAQs
---
We found that matrix-rx 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
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.