Socket
Socket
Sign inDemoInstall

@expo/plist

Package Overview
Dependencies
3
Maintainers
24
Versions
47
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/plist

Mac OS X Plist parser/builder for Node.js and browsers


Version published
Weekly downloads
1.1M
increased by9.27%
Maintainers
24
Install size
468 kB
Created
Weekly downloads
 

Package description

What is @expo/plist?

@expo/plist is a utility library for parsing and building property list (plist) files, which are commonly used in macOS and iOS applications for configuration. This package allows you to easily read, write, and manipulate plist files in both XML and binary formats.

What are @expo/plist's main functionalities?

Parsing XML Plist

This feature allows you to parse an XML plist string into a JavaScript object. The example demonstrates parsing a simple XML plist string containing a dictionary with one key-value pair.

const plist = require('@expo/plist');
const xml = '<plist version="1.0"><dict><key>foo</key><string>bar</string></dict></plist>';
const parsed = plist.parse(xml);
console.log(parsed); // { foo: 'bar' }

Building XML Plist

This feature allows you to build an XML plist string from a JavaScript object. The example demonstrates converting a simple JavaScript object into an XML plist string.

const plist = require('@expo/plist');
const obj = { foo: 'bar' };
const xml = plist.build(obj);
console.log(xml); // <plist version="1.0"><dict><key>foo</key><string>bar</string></dict></plist>

Parsing Binary Plist

This feature allows you to parse a binary plist file into a JavaScript object. The example demonstrates reading a binary plist file from the filesystem and parsing it.

const plist = require('@expo/plist');
const fs = require('fs');
const buffer = fs.readFileSync('example.plist');
const parsed = plist.parse(buffer);
console.log(parsed);

Building Binary Plist

This feature allows you to build a binary plist file from a JavaScript object. The example demonstrates converting a simple JavaScript object into a binary plist file and writing it to the filesystem.

const plist = require('@expo/plist');
const fs = require('fs');
const obj = { foo: 'bar' };
const buffer = plist.build(obj, { format: 'binary' });
fs.writeFileSync('example.plist', buffer);

Other packages similar to @expo/plist

Readme

Source

plist CircleCI

Mac OS X Plist parser/builder for Node.js and browsers, forked from this repo

Keywords

FAQs

Last updated on 12 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc