Skip to content

Apple Property List (plist) parsing & serializing

License

Notifications You must be signed in to change notification settings

jhermsmeier/node-apple-plist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apple Property List (plist)

npm npm license npm downloads build status

Apple Property List (plist) parsing & serializing of XML / Binary / JSON formats

Install via npm

$ npm install --save apple-plist

Usage

var Plist = require( 'apple-plist' )
var plist = Plist.parse( value )

API

class Plist

  • Static Methods:

    • .parse( value: String | Buffer, offset: Number = 0 ) -> Plist
    • .fromJSON( value: String | Buffer | Object ) -> Plist
  • Instance Properties:

    • .data -> Object
  • Instance Methods:

    • .parse( value: String | Buffer, offset: Number = 0 ) -> Plist
    • .parseXML( value: String | Buffer, offset: Number = 0 ) -> Plist
    • .parseBinary( value: Buffer, offset: Number = 0 ) -> Plist
    • .fromJSON( value: String | Buffer | Object ) -> Plist
    • .write( buffer: Buffer = null, offset: Number = 0, encoding: String( 'binary' | 'xml' | 'json' ) ) -> Buffer
    • .toString() -> String