Socket
Socket
Sign inDemoInstall

xcode

Package Overview
Dependencies
Maintainers
14
Versions
1193
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xcode

parser for xcodeproj/project.pbxproj files


Version published
Weekly downloads
1.5M
increased by1.79%
Maintainers
14
Weekly downloads
 
Created

What is xcode?

The xcode npm package is a library for parsing, modifying, and generating Xcode project files programmatically. It allows developers to manipulate Xcode project settings and configurations without manually editing the project files, which can be error-prone and time-consuming.

What are xcode's main functionalities?

Parsing Xcode project files

This feature allows you to parse an existing Xcode project file and work with its contents programmatically.

const xcode = require('xcode');
const fs = require('fs');
const projectPath = 'MyApp.xcodeproj/project.pbxproj';
const project = xcode.project(projectPath);

project.parseSync();
console.log(project);

Adding files to a project

This feature allows you to add new source files to an Xcode project programmatically.

const xcode = require('xcode');
const fs = require('fs');
const projectPath = 'MyApp.xcodeproj/project.pbxproj';
const mySourceFile = 'MyClass.swift';
const project = xcode.project(projectPath);

project.parseSync();
project.addSourceFile(mySourceFile);
fs.writeFileSync(projectPath, project.writeSync());

Adding a framework to a project

This feature allows you to add a framework to an Xcode project programmatically.

const xcode = require('xcode');
const fs = require('fs');
const projectPath = 'MyApp.xcodeproj/project.pbxproj';
const frameworkPath = 'Frameworks/MyFramework.framework';
const project = xcode.project(projectPath);

project.parseSync();
project.addFramework(frameworkPath);
fs.writeFileSync(projectPath, project.writeSync());

Creating a new Xcode project

This feature allows you to create a new Xcode project from scratch programmatically.

const xcode = require('xcode');
const fs = require('fs');
const projectPath = 'MyNewApp.xcodeproj/project.pbxproj';
const project = xcode.project(projectPath);

project.parseSync();
// Add configurations and settings here
fs.writeFileSync(projectPath, project.writeSync());

Other packages similar to xcode

FAQs

Package last updated on 24 Dec 2019

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc