
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.
@mappedin/mvf
Advanced tools
A starting point for interacting with MVF bundles. For Developers looking to get up and running with MVF, this is likely the best starting point.
A starting point for interacting with MVF bundles. For Developers looking to get up and running with MVF, this is likely the best starting point.
For most developers, the createMVFv3Parser function and associated type MVFv3 are what should be used. This provides an exporter parser, and a type for the parsed data for convenience.
import { createMVFv3Parser, type MVFv3 } from '@mappedin/mvf';
const parser = createMVFv3Parser().build().unwrap();
const myFunction = (data: MVFv3) => {
// do something with the parsed data.
}
const mvf: MVFv3 = await parser.decompress(data).then((result) => result.unwrap());
const result = myFunction(data);
Note the use of .unwrap() on the result of some functions. As implemented, these APIs are guaranteed not to throw, but as a result the returned value must be transformed in some way to interact with it. Unwrapping a value essentially restores "default" Javascript behaviour and throw an exception if there was an error while performing the operation.
For more information on the parser API, see the MVFParser docs.
For developers who have map data stored in Mappedin CMS, an additional parser preset is exposed to fit the format of that data.
import { createCMSMVFv3Parser, type CMSMVFv3 } from '@mappedin/mvf/preset-cms';
Otherwise, usage is the same as described above.
FAQs
A starting point for interacting with MVF bundles. For Developers looking to get up and running with MVF, this is likely the best starting point.
We found that @mappedin/mvf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.

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.