
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@matrix-org/analytics-events
Advanced tools
This repository contains JSON schema defining analytics events raised by the Matrix client SDKs.
It also contains a generator of type stubs for these events which can be used by the client SDKs. Using these stubs ensures events raised comply with the schema via compile-time type verification.
You can find an overview of the analytics events here.
/schemas contains one JSON schema file per event, each named exactly according to the name of that event
(case-sensitive).
/types contain type stubs generated from these schemas in the different client languages we support.
After creating or updating an event schema, you need to generate new type stubs and commit them along with your changes to the events.
To install the stub generator (only needed once), you'll need on your system
For me, the easiest way to install python 3.10 was via pyenv,
then poetry was happy to recognise it after running pyenv local 3.10.0.
Then run
scripts/setup.sh
To generate the stubs:
yarn build
One schema per .json. The filename should match the event's name, including case.
Each schema should contain an eventName property declared as an enum with a single value.
This convention can be relied upon by consumers of stubs as a way to get the correct name to send for that event.
For example:
"eventName": {
"enum": ["Error"]
},
description fields. Your audience might be unfamiliar with the codebase,
or non-technical, so don't refer to code concepts and try to describe things in general but accurate terms. English grammar must be respected, in particular sentences must end with punctuation (eg a period).{
"type": "object",
"description": "Triggered when the user changed screen.",
"properties": {
"eventName": {
"enum": ["Screen"]
}
}
}
"durationMs": {
"description": "How long the screen was displayed for in milliseconds.",
"type": "integer"
}
"screenName": {
"type": "string",
"oneOf": [
{"const": "Welcome", "description": "The splash screen."},
]
}
Use "Run workflow". Refer to SemVer for versioning semantics. This workflow will bump the version, publish NPM and create a GitHub release. The Swift consumer uses SwiftPM and can target the latest released version, the Kotlin consumer pulls this repo weekly.
FAQs
JSON schema for analytics events from matrix SDKs
The npm package @matrix-org/analytics-events receives a total of 9,937 weekly downloads. As such, @matrix-org/analytics-events popularity was classified as popular.
We found that @matrix-org/analytics-events demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.