Bow alternatives and similar libraries
Based on the "Utility" category.
Alternatively, view Bow alternatives based on common mentions on social networks and blogs.
-
SwifterSwift
A handy collection of more than 500 native Swift extensions to boost your productivity. -
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects -
SwiftGen-Storyboard
The Swift code generator for your assets, storyboards, Localizable.strings, β¦ β Get rid of all String-based APIs! -
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, β¦ β Get rid of all String-based APIs! -
swift-protobuf
Plugin and runtime library for using protobuf with Swift -
Dollar
A functional tool-belt for Swift Language similar to Lo-Dash or Underscore.js in Javascript -
EZSwiftExtensions
:smirk: How Swift standard types and classes were supposed to work. -
DifferenceKit
π» A fast and flexible O(n) difference algorithm framework for Swift collection. -
DeepDiff
π¦Amazingly incredible extraordinary lightning fast diffing in Swift -
Device
Light weight tool for detecting the current device and screen size written in swift. -
SwiftLinkPreview
It makes a preview from an URL, grabbing all the information such as title, relevant texts and images. -
WhatsNew
Showcase new features after an app update similar to Pages, Numbers and Keynote. -
Codextended
Extensions giving Swift's Codable API type inference super powers π¦ΈββοΈπ¦ΉββοΈ -
SwiftyJSONAccelerator
macOS app to generate Swift 5 code for models from JSON (with Codeable) -
Playbook
πA library for isolated developing UI components and automatically taking snapshots of them. -
ReadabilityKit
Preview extractor for news, articles and full-texts in Swift -
ObjectiveKit
Swift-friendly API for a set of powerful Objective C runtime functions. -
Compass
:earth_africa: Compass helps you setup a central navigation system for your application -
Pythonic.swift
Pythonic tool-belt for Swift β a Swift implementation of selected parts of Python standard library. -
BetterSafariView
A better way to present a SFSafariViewController or start a ASWebAuthenticationSession in SwiftUI. -
SwiftPlantUML
A command-line tool and Swift Package for generating class diagrams powered by PlantUML
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Bow or a related project?
README
Bow is a cross-platform library for Typed Functional Programming in Swift.
Documentation
All documentation and API reference is published in our website. Some links to key aspects of the library:
Modules
Bow is split into multiple modules that can be consumed independently. These modules are:
Bow
: core library. Contains Higher Kinded Types emulation, function manipulation utilities, Typeclasses, Data Types, Monad Transformers, and instances for primitive types.BowOptics
: module to work with different optics.BowRecursionSchemes
: module to work with recursion schemes.BowFree
: module to work with Free Monads.BowGeneric
: module to work with generic data types.BowEffects
: module to work with effects.BowRx
: module to provide an integration with RxSwift.
There are also some modules for testing:
BowLaws
: laws for type classes in the core module.BowOpticsLaws
: laws for optics.BowEffectsLaws
: laws for effects.BowGenerators
: generators for Property-based Testing for data types in the core module.BowFreeGenerators
: generators for Property-based Testing for data types in BowFree.BowEffectsGenerators
: generators for Property-based Testing for data types in BowEffects.BowRxGenerators
: generators for Property-based Testing for data types in BowRx.
Bow is available using Swift Package Manager, CocoaPods, and Carthage.
Swift Package Manager
Starting on Xcode 11, you can use the integration in the IDE with Swift Package manager to bring the dependencies into your project. You only need the repository URL: https://github.com/bow-swift/bow.git. For earlier versions of Xcode, create a Package.swift
file similar to the next one and use the dependencies at your convenience.
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "BowTestProject",
dependencies: [
.package(url: "https://github.com/bow-swift/bow.git", from: "{version}")
],
targets: [
.target(name: "BowTestProject",
dependencies: [
"Bow",
"BowOptics",
"BowRecursionSchemes",
"BowFree",
"BowGeneric",
"BowEffects",
"BowRx"]),
.testTarget(name: "BowTestProjectTests",
dependencies: [
// Type class laws
"BowLaws",
"BowOpticsLaws",
"BowEffectsLaws",
// Generators for PBT with SwiftCheck
"BowGenerators",
"BowFreeGenerators",
"BowEffectsGenerators",
"BowRxGenerators"])
]
)
To build it, just run:
$ swift build
CocoaPods
You can consume each Bow module as a separate pod. You can add these lines to your Podfile at your convenience:
pod "Bow", "~> {version}"
pod "BowOptics", "~> {version}"
pod "BowRecursionSchemes", "~> {version}"
pod "BowFree", "~> {version}"
pod "BowGeneric", "~> {version}"
pod "BowEffects", "~> {version}"
pod "BowRx", "~> {version}"
Testing laws:
pod "BowLaws", "~> {version}"
pod "BowOpticsLaws", "~> {version}"
pod "BowEffectsLaws", "~> {version}"
Generators for property-based testing with SwiftCheck:
pod "BowGenerators", "~> {version}"
pod "BowFreeGenerators", "~> {version}"
pod "BowEffectsGenerators", "~> {version}"
pod "BowRxGenerators", "~> {version}"
Carthage
Carthage will download the whole Bow project, but it will compile individual frameworks for each module that you can use separately. Add this line to your Cartfile:
github "bow-swift/Bow" ~> {version}
Contributing
If you want to contribute to this library, you can check the Issues to see some of the pending tasks.
How to run the project
Open Bow.xcodeproj
in Xcode 11 (or newer) and you are ready to go. Bow uses the Swift Package Manager to handle its dependencies.
How to run the documentation project
- Go to the root directory.
- Run
nef compile --project Documentation.app
to get all dependencies. - Open
Documentation.app
and run the project.
For further information, refer to our [Contribution guidelines](CONTRIBUTING.md).
How to create a new release
You can create a new release by running bundle exec fastlane release version_number:
. For example, bundle exec fastlane ios release version_number: "0.8.0"
.
The following steps would be run:
- Update the
version
in*.podspec
files. - Create a tag with message added in the
CHANGELOG
file. - Deploy podspec files and make them publicly available.
License
Copyright (C) 2018-2020 The Bow Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the Bow README section above
are relevant to that project's source code only.