https://github.com/igor-makarov/cdn-node-cocoapods
CocoaPods CDN Server
https://github.com/igor-makarov/cdn-node-cocoapods
Last synced: 3 months ago
JSON representation
CocoaPods CDN Server
- Host: GitHub
- URL: https://github.com/igor-makarov/cdn-node-cocoapods
- Owner: igor-makarov
- Created: 2020-01-30T11:11:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-12T11:25:03.000Z (over 2 years ago)
- Last Synced: 2025-01-20T15:48:53.942Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 130 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CocoaPods CDN Server
## Rationale
While Netlify is great in the automation respect, there are several reasons to look for an alternative:* Netlify is expensive, we don't want @dnkoutso to keep paying for it!
* Publish latency is problematic - builds take 4-5 minutes and sometimes get delayed until a previous build finishes.
@paulb777 and [others](https://github.com/CocoaPods/CocoaPods/issues/9497) have trouble publishing interlinked pods.## Proposed alternative
Use GitHub API to get the latest index data directly. Use a registered GH API token.* Use git tree API to retrieve directory listings. This API supports ETags, and therefore only consumes API calls when data changes.
* Use GH Search API to retrieve probably deprecated podspecs. This currently produces false positives, but those will get ruled out by the client during dependency resolution.
* Use a CDN both for user-facing calls, and for reducing GH API usage.