Skip to main content

deno.land/x/bplist_parser

A Deno port for the bplist-parser NPM package. Parses macOS binary property lists into equivalent (non-binary) JavaScript values.

Usage

// You should @version this import
import { parseBuffer } from "https://deno.land/x/bplist_parser/mod.ts";

const file = await Deno.readFile("./path/to/file.bplist");
const bplist = parseBuffer(file);

This module was adapted from https://github.com/joeferner/node-bplist-parser. The original license can be found in that repo’s README.

All additional work is copyright 2022 Connor Logan. All rights reserved.