https://github.com/dirtyhenry/swift-hoods
🏘️ A collection of my Swift building blocks with dependencies.
https://github.com/dirtyhenry/swift-hoods
swift swift-composable-architecture swift-dependencies swiftui
Last synced: 11 days ago
JSON representation
🏘️ A collection of my Swift building blocks with dependencies.
- Host: GitHub
- URL: https://github.com/dirtyhenry/swift-hoods
- Owner: dirtyhenry
- License: mit
- Created: 2023-10-23T17:13:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-30T17:54:58.000Z (4 months ago)
- Last Synced: 2025-04-15T14:13:57.613Z (11 days ago)
- Topics: swift, swift-composable-architecture, swift-dependencies, swiftui
- Language: Swift
- Homepage: https://swiftpackageindex.com/dirtyhenry/swift-hoods
- Size: 2.98 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

# 🏘️ Hoods
[](https://swiftpackageindex.com/dirtyhenry/swift-hoods)
[](https://swiftpackageindex.com/dirtyhenry/swift-hoods)A collection of my Swift building blocks that are using few well known
dependencies, such as [The Composable Architecture][2], as opposed to
[Blocks][1], my collection of dependency-free Swift code.This repository contains:
- `Hoods`: a Swift library for my development needs;
And the following examples executables/apps:
- `HoodsApp`: a basic App using `swift-hoods` within an app.
## Usage
```swift
import Hoods
```## Installation
Swift Package Manager is recommended:
```swift
dependencies: [
.package(
url: "https://github.com/dirtyhenry/swift-hoods",
from: "main"
),
]
```Next, add `Hoods` as a dependency of your test target:
```swift
targets: [
.target(name: "MyTarget", dependencies: [
.product(name: "Hoods", package: "swift-hoods")
])
]
```## License
[MIT](https://choosealicense.com/licenses/mit/)
[1]: https://github.com/dirtyhenry/swift-blocks
[2]: https://github.com/pointfreeco/swift-composable-architecture