# pbxproj-dom

> Parser and DOM over the xcode pbxproj

Latest version **1.2.0** (published 2019-04-25) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install pbxproj-dom
pnpm add pbxproj-dom
yarn add pbxproj-dom
bun add pbxproj-dom
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.0 |
| Published | 2019-04-25 |
| First published | 2016-12-09 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 83.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13 |
| Maintainers | panayot.cankov, tns-bot |

## Links

- npm: https://www.npmjs.com/package/pbxproj-dom
- Repository: https://github.com/PanayotCankov/pbxproj-dom
- Homepage: https://github.com/PanayotCankov/pbxproj-dom#readme
- Issues: https://github.com/PanayotCankov/pbxproj-dom/issues
- npm.io page: https://npm.io/package/pbxproj-dom

## Recent versions

- 1.2.0 (latest) — 2019-04-25
- 1.1.0 — 2019-03-19
- 1.0.11 — 2017-04-11
- 1.0.10 — 2017-04-07
- 1.0.9 — 2017-03-27
- 1.0.8 — 2017-01-16
- 1.0.7 — 2017-01-09
- 1.0.6 — 2017-01-09
- 1.0.5 — 2017-01-05
- 1.0.4 — 2017-01-05
- 1.0.3 — 2016-12-09
- 1.0.2 — 2016-12-09
- 1.0.1 — 2016-12-09
- 1.0.0 — 2016-12-09

## README

Parser and DOM over the xcode pbxproj

[![Build Status](https://travis-ci.org/NativeScript/pbxproj-dom.svg?branch=master)](https://travis-ci.org/NativeScript/pbxproj-dom)

Sample usage:

```
import { Xcode } from "pbxproj-dom/xcode";

const xcode = Xcode.open(pbxprojPath);
xcode.setManualSigningStyle("MyAppTarget");
xcode.save();
```

The ultimate goal would be one day the module to support a JavaScript API for Xcode modifications similar to the Cocoapods ruby:
```
post_install do |installer|
 installer.pods_project.targets.each do |target|
   target.build_configurations.each do |config|
     config.build_settings['SWIFT_VERSION'] = '3.0'
   end
 end
end
```

---
_Source: https://npm.io/package/pbxproj-dom · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
