Gathering detailed insights and metrics for xcode
Gathering detailed insights and metrics for xcode
Gathering detailed insights and metrics for xcode
Gathering detailed insights and metrics for xcode
npm install xcode
Typescript
Module System
Min. Node Version
Node Version
NPM Version
97.9
Supply Chain
90.7
Quality
95.9
Maintenance
100
Vulnerability
88
License
JavaScript (98.28%)
PEG.js (1.5%)
Makefile (0.22%)
Total Downloads
403,802,477
Last Day
106,132
Last Week
1,839,563
Last Month
8,299,868
Last Year
81,771,249
Apache-2.0 License
203 Stars
404 Commits
100 Forks
21 Watchers
12 Branches
74 Contributors
Updated on Jul 03, 2025
Minified
Minified + Gzipped
Latest Version
3.0.1
Package Id
xcode@3.0.1
Size
29.27 kB
NPM Version
6.14.4
Node Version
14.2.0
Published on
May 19, 2020
Cumulative downloads
Total Downloads
Last Day
-13.8%
106,132
Compared to previous day
Last Week
-8.4%
1,839,563
Compared to previous week
Last Month
2.2%
8,299,868
Compared to previous month
Last Year
28.8%
81,771,249
Compared to previous year
2
Parser utility for xcodeproj project files
Allows you to edit xcodeproject files and write them back out.
based on donated code from alunny / node-xcode
1// API is a bit wonky right now 2var xcode = require('xcode'), 3 fs = require('fs'), 4 projectPath = 'myproject.xcodeproj/project.pbxproj', 5 myProj = xcode.project(projectPath); 6 7// parsing is async, in a different process 8myProj.parse(function (err) { 9 myProj.addHeaderFile('foo.h'); 10 myProj.addSourceFile('foo.m'); 11 myProj.addFramework('FooKit.framework'); 12 13 fs.writeFileSync(projectPath, myProj.writeSync()); 14 console.log('new project written'); 15});
If there's a problem parsing, you will want to edit the grammar under
lib/parser/pbxproj.pegjs
. You can test it online with the PEGjs online thingy
at https://pegjs.org/online - I have had some mixed results though.
Tests under the test/parser
directory will compile the parser from the
grammar. Other tests will use the prebuilt parser (lib/parser/pbxproj.js
).
To rebuild the parser js file after editing the grammar, run:
npm run pegjs
(and be sure to restore the Apache license notice in
lib/parser/pbxproj.js
before committing)
Apache V2
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 16/27 approved changesets -- score normalized to 5
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
10 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More