2.0.0 • Published 5 years ago

read-bplist v2.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

read-bplist

npm version Build Status codecov

A Node.js module to parse a Binary macOS Plist (.bplist) file

import readBplist from 'read-bplist';

(async () => {
  const data = await readBplist('path/to/your.bplist');
  //=> {some: 'properties'}
})();

Installation

Use npm.

npm install read-bplist

API

import readBplist from 'read-bplist';

readBplist(path)

path: string | Buffer | Uint8Array | URL (a file path) or integer (a file descriptor)
Return: Promise<Object>

License

ISC License © 2019 Watanabe Shinnosuke

2.0.0

5 years ago

2.0.0-0

5 years ago

1.0.0

7 years ago

0.6.0

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.0.0

8 years ago