Socket
Socket
Sign inDemoInstall

manifest-ios

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    manifest-ios

Update your iOS mobile application manifest (Version, Bundle idenfifier, ...).


Version published
Weekly downloads
4
Maintainers
1
Install size
85.3 kB
Created
Weekly downloads
 

Readme

Source

manifest-ios

Update your iOS mobile application manifest (version, bundle idenfifier, ...).

Install

$ npm install --save manifest-ios

Quickstart

var assert = require('assert');
var path = require('path');

var iOSManifest = require('manifest-ios');

var ios = new iOSManifest();
ios.load({ file: path.join(__dirname, "Info.plist") }, function(err){
    ios.version = "2.5.6.7";
    ios.bundleIdentifier = "com.test.sample";
    ios.displayName = "Sample";
    ios.save({ file: path.join(__dirname, "Info.Updated.plist") }, function(err) {
        console.log("DONE");
    })
})

Other manifests

  • UWP
  • Android

MIT © Aloïs Deniel

Keywords

FAQs

Last updated on 27 Apr 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc