Popularity
8.5
Stable
Activity
4.0
-
2,271
24
179

Programming language: Swift
License: MIT License
Tags: Network    
Latest version: v1.6.3

Wormholy alternatives and similar libraries

Based on the "Network" category.
Alternatively, view Wormholy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Wormholy or a related project?

Add another 'Network' Library

README

Language Pod version

Start debugging iOS network calls like a wizard, without extra code! Wormholy makes debugging quick and reliable.

What you can do:

  • [x] No code to write and no imports.
  • [x] Record all app traffic that uses NSURLSession.
  • [x] Reveal the content of all requests, responses, and headers simply by shaking your phone!
  • [x] No headaches with SSL certificates on HTTPS calls.
  • [x] Find, isolate and fix bugs quickly.
  • [x] Swift & Objective-C compatibility.
  • [x] Also works with external libraries like Alamofire & AFNetworking.
  • [x] Ability to blacklist hosts from being recorded using the array ignoredHosts.
  • [x] Ability to export API requests as Postman collection
  • [x] Ability to share cURL rappresentation of API requests

Requirements


  • iOS 9.0+
  • Xcode 10+
  • Swift 4, 4.1, 4.2 and Swift 5

Usage


Add it to your project, and that's all! Shake your device or your simulator and Wormholy will appear! You don't need to import the library into your code, it works magically!

I suggest you install it only in debug mode. The easiest way is with CocoaPods:

pod 'Wormholy', :configurations => ['Debug']

If you want to disable the shake, and fire Wormholy from another point inside your app, you need to set the environment variable WORMHOLY_SHAKE_ENABLED = NO, and call this local notification:

NotificationCenter.default.post(name: NSNotification.Name(rawValue: "wormholy_fire"), object: nil)

You can also programmatically enable/disable the shake gesture at any time. You can do Wormholy.shakeEnabled = false to disable (or enable) the shake gesture.

Carthage


You can also install Wormholy using Carthage.

To integrate Wormholy into your Xcode project using Carthage, specify it in your Cartfile:

github "pmusolino/Wormholy"

Run carthage update to build the framework and drag the built Wormholy.framework into your Xcode project.

Contributing

  • If you need help or you'd like to ask a general question, open an issue.
  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Acknowledgements

Made with ❀️ by Paolo Musolino.

Follow me on:

πŸ’Ό Linkedin

πŸ€– Twitter

πŸŒ‡ Instagram

πŸ‘¨πŸΌβ€πŸŽ€ Facebook

MIT License


Wormholy is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the Wormholy README section above are relevant to that project's source code only.