Do you want to know what's tedious? Debugging network requests and responses if you don't have the right tools. Guppy is a logging tool focused on HTTP requests that can be easily plugged into any iOS application. Guppy will intercept and log each network request sent from the app. You can access any Guppy log and share it with the rest of your team effortlessly.
While in the simulator you can use: ^ + ⌘ + z
to bring up Guppy or shake your phone.
You can dig deep into the details of your network logs and share them with your team or yourself.
To run the example project, clone the repo, and run pod install
from the Example directory first.
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
Guppy.registerURLProtocol()
return true
}
}
class Session: URLSession {
init() {
let configuration = URLSessionConfiguration.default
configuration.urlCache = nil
// Protocols are evaluated in reverse order
// If GuppyURLProtocol is not the last protocol it is not guaranteed to be executed
configuration.protocolClasses = [MyCustomProtocol, GuppyURLProtocol.self]
super.init(configuration: configuration)
}
}
class SessionManager: Alamofire.SessionManager {
init() {
let configuration = URLSessionConfiguration.default
configuration.urlCache = nil
configuration.protocolClasses = [GuppyURLProtocol.self]
super.init(configuration: configuration)
}
}
- Xcode 12.0+
- iOS 13.0+
Guppy is best used in non-production environments. By default, installing the Guppy framework will automatically make it available when the user shakes their device. To avoid this do any combination of the following:
- If you are using multiple targets for different environments, only include the Guppy framework in the non-production targets
- If you are using one target with multiple configurations for different environments, only include the Guppy framework in the non-production configuration
- Set
Guppy.shared.showOnShake = false
in yourdidFinishLaunchingWithOptions
for the specific times where Guppy should not be available
https://github.com/johnsonandjohnson/Guppy-iOS.git
pod 'Guppy'
github "johnsonandjohnson/Guppy-iOS"
Guppy is released under the Apache 2.0 license. See LICENSE for details.