Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicinabox/plistbuddy
A handy tool to manipulate plist files. Useful for iOS development.
https://github.com/nicinabox/plistbuddy
Last synced: 25 days ago
JSON representation
A handy tool to manipulate plist files. Useful for iOS development.
- Host: GitHub
- URL: https://github.com/nicinabox/plistbuddy
- Owner: nicinabox
- Created: 2015-11-17T05:53:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T15:39:46.000Z (almost 8 years ago)
- Last Synced: 2024-10-06T18:14:09.423Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plistbuddy
A handy tool to manipulate plist files. Useful for iOS development.
## Usage
```javascript
var plistbuddy = require('plistbuddy')('./ios/MyApp/Info.plist')plistbuddy
.set(':CFBundleShortVersionString', '1.0.0')
.set(':CFBundleVersion', '42')
.run()
```## API
`plistbuddy` wraps the following commands with a chainable api:
```
Clear, Print, Set, Add, Copy, Delete, Message, Merge, Import'
```