
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
CMCD (Common Media Client Data) library with Typescript definitions.
npm i cmcd.js
All CMCD properties are optional. Properties that are with nullish values will not be serialized.
import {
Cmcd,
CmcdObjectType,
CmcdStreamingFormat,
CmcdStreamType,
toHeaders,
toJson,
toQuery
} from 'cmcd.js';
const data: Cmcd = {
cid: '9f7f349b-baba-43d7-bbe7-b0dc8a65af0d',
sf: CmcdStreamingFormat.DASH,
st: CmcdStreamType.VOD,
su: false,
mtp: 10000,
bs: true,
br: 200,
ot: CmcdObjectType.MANIFEST,
};
const query = toQuery(data);
console.log(query);
/*
'CMCD=br%3D200%2Cbs%2Cmtp%3D10000%2Cot%3Dm%2Csf%3Dd%2Ccid%3D%229f7f349b-baba-43d7-bbe7-b0dc8a65af0d%22%2Cst%3Dv'
*/
const headers = toHeaders(data);
console.log(headers);
/*
{
'cmcd-request': 'mtp=10000',
'cmcd-object': 'br=200,ot=m',
'cmcd-session': 'sf=d,cid="9f7f349b-baba-43d7-bbe7-b0dc8a65af0d",st=v',
'cmcd-status': 'bs',
}
*/
const json = toJson(data);
console.log(json);
/*
'{"mtp":10000,"su":false,"br":200,"ot":"m","sf":"d","cid":"9f7f349b-baba-43d7-bbe7-b0dc8a65af0d","st":"v","bs":true}'
*/
https://littlespex.github.io/cmcd.js/
FAQs
CMCD (Common Media Client Data) library with Typescript definitions
The npm package cmcd.js receives a total of 0 weekly downloads. As such, cmcd.js popularity was classified as not popular.
We found that cmcd.js 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.