Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shinnn/read-bplist
Parse a Binary macOS Plist (.bplist) file
https://github.com/shinnn/read-bplist
Last synced: 26 days 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 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-27T00:08:08.000Z (over 5 years ago)
- Last Synced: 2024-09-26T15:18:48.632Z (about 2 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
[![npm version](https://img.shields.io/npm/v/read-bplist.svg)](https://www.npmjs.com/package/read-bplist)
[![Build Status](https://travis-ci.com/shinnn/read-bplist.svg?branch=master)](https://travis-ci.com/shinnn/read-bplist)
[![codecov](https://codecov.io/gh/shinnn/read-bplist/branch/master/graph/badge.svg)](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