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
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
196 Stars
404 Commits
98 Forks
20 Watching
12 Branches
73 Contributors
Updated on 25 Nov 2024
JavaScript (98.28%)
PEG.js (1.5%)
Makefile (0.22%)
Cumulative downloads
Total Downloads
Last day
-4.2%
328,767
Compared to previous day
Last week
2.8%
1,764,098
Compared to previous week
Last month
12.5%
7,151,320
Compared to previous month
Last year
18.5%
71,256,013
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
8 existing vulnerabilities detected
Details
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
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
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