1.0.1 • Published 8 years ago

readplist v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

readplist

Tiny Node.js module to read any plist file.

Travis js-standard-style

Uses plutil which is only available on OS X.

Install

npm install readplist

Usage

var readplist = require('readplist');
var PATH = '/Applications/App\ Store.app/Contents/Info.plist';

readplist(PATH, function(err, plist) {
  if (err) return console.error(err);
  console.log(plist.MDItemKeywords)
});

Comparaison

moduleops/secXMLJSONbinaryplatform
readplist80darwin, node
plist.js887any, node/browser

node benchmark.js

Test

npm install -g standard
npm test