
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@astronautlabs/amf
Advanced tools
📜 Adobe AMF version 0
Adobe's Action Message Format v0
📜 Adobe AMF version 3
Adobe’s Action Message Format v3
📺 Part of the Astronaut Labs Broadcast Suite
See also:
📝 Alpha Quality
This library is new, no compatibility is currently guaranteed between releases (beta, semver 0.0.x).
npm i @astronautlabs/amf
import { AMF0, AMF3 } from '@astronautlabs/amf';
// Encode AMF values
let encoded : Uint8Array;
encoded = AMF0.Value.any(123).serialize();
encoded = AMF0.Value.any(false).serialize();
encoded = AMF0.Value.any(null).serialize();
encoded = AMF0.Value.any({ hello: 'world' }).serialize();
encoded = AMF0.Value.any([ 1, 2, "types", "are", "good" ]).serialize();
// Be specific about types
encoded = AMF3.Value.vector(Int32Array.from([0,1,2,3]));
// Transparent passthrough of existing AMF values
encoded = AMF3.Value.object({
foo: 123,
bar: AMF3.Value.dictionary({
baz: 321,
fizz: 'hello'
})
})
// Decode values (from Uint8Array/Buffer)
let decoded : AMF0.Value = AMF0.Value.deserialize(encoded);
FAQs
Action Message Format (AMF0/3)
The npm package @astronautlabs/amf receives a total of 380 weekly downloads. As such, @astronautlabs/amf popularity was classified as not popular.
We found that @astronautlabs/amf 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.