Parse a macOS Binary Plist (.bplist) file
npm install read-bplist


A Node.js module to parse a Binary macOS Plist (.bplist) file
``javascript
import readBplist from 'read-bplist';
(async () => {
const data = await readBplist('path/to/your.bplist');
//=> {some: 'properties'}
})();
`
``
npm install read-bplist
`javascript`
import readBplist from 'read-bplist';
path: string | Buffer | Uint8Array | URL (a file path) or integer (a file descriptor) Promise
Return:
ISC License © 2019 Watanabe Shinnosuke