https://github.com/shinnn/read-bplist
Parse a Binary macOS Plist (.bplist) file
https://github.com/shinnn/read-bplist
Last synced: about 2 months ago
JSON representation
Parse a Binary macOS Plist (.bplist) file
- Host: GitHub
- URL: https://github.com/shinnn/read-bplist
- Owner: shinnn
- License: isc
- Created: 2016-07-12T12:28:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-27T00:08:08.000Z (over 6 years ago)
- Last Synced: 2024-11-19T15:02:25.797Z (11 months ago)
- Language: JavaScript
- Size: 85.9 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# read-bplist
[](https://www.npmjs.com/package/read-bplist)
[](https://travis-ci.com/shinnn/read-bplist)
[](https://codecov.io/gh/shinnn/read-bplist)A [Node.js](https://nodejs.org/) 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'}
})();
```## Installation
[Use](https://docs.npmjs.com/cli/install) [npm](https://docs.npmjs.com/about-npm/).
```
npm install read-bplist
```## API
```javascript
import readBplist from 'read-bplist';
```### readBplist(*path*)
*path*: `string | Buffer | Uint8Array | URL` (a file path) or `integer` (a file descriptor)
Return: `Promise`## License
[ISC License](./LICENSE) © 2019 Watanabe Shinnosuke