apple-plist-parser

0.0.3 • Public • Published

ApplePlistParser

ApplePlistParser is a simple library to parse Apple plist files.

Installation

npm install apple-plist-parser --save

Usage

var parser = require('apple-plist-parser');
parser.parseFile('path/to/file.plist', function(err, data) {
  if (err) {
    console.log(err);
  } else {
    console.log(data);
  }
});

License

MIT License
Copyright (c) 2022 by sakaitaka

Package Sidebar

Install

npm i apple-plist-parser

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

6.28 kB

Total Files

9

Last publish

Collaborators

  • sakaitaka