NetworkEye alternatives and similar libraries
Based on the "Networking" category.
Alternatively, view NetworkEye alternatives based on common mentions on social networks and blogs.
-
RealReachability
We need to observe the REAL reachability of network. That's what RealReachability do. -
Networking
DISCONTINUED. Easy HTTP Networking in Swift a NSURLSession wrapper with image caching support -
XMNetworking
A lightweight but powerful network library with simplified and expressive syntax based on AFNetworking. -
Digger
Digger is a lightweight download framework that requires only one line of code to complete the file download task -
SOAPEngine
This generic SOAP client allows you to access web services using a your iOS app, Mac OS X app and AppleTV app. -
TWRDownloadManager
A modern download manager based on NSURLSession to deal with asynchronous downloading, management and persistence of multiple files. -
ws ☁️
⚠️ Deprecated - (in favour of Networking) :cloud: Elegantly connect to a JSON api. (Alamofire + Promises + JSON Parsing) -
MultiPeer
📱📲 A wrapper for the MultipeerConnectivity framework for automatic offline data transmission between devices -
AFNetworking+RetryPolicy
Nice category that adds the ability to set the retry interval, retry count and progressiveness.
CodeRabbit: AI Code Reviews for Developers

* 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 NetworkEye or a related project?
README
NetworkEye
NetworkEye,a iOS network debug library,monitor HTTP requests.
It can be detected HTTP request include web pages, NSURLConnection, NSURLSession, AFNetworking, 3rd libraries, 3rd SDK ,and so on. very convenient and practical.
It can be map local json file.
I created a google group,this group is for general discussion NetworkEye ,welcome to join,https://groups.google.com/d/forum/networkeye
if you use NetworkEye, you can add it in here,Who-Uses-NetworkEye
welcome to new pull request,that fix bug,add new features,add support other platform.and welcome to new issues.
and thanks to kasketis write the swift version netfox
Podfile
platform :ios, '7.0'
pod 'NetworkEye', '~> 1.1.2'
# pod 'NetworkEye/FMDB', '~> 1.1.2' # NetworkEye with FMDB ,save your requests to database
Instruction
Note:Use Network Eye in DEBUG mode
add the code in AppDelegate.m
import "NEHTTPEye.h"
if defined(DEBUG)||defined(_DEBUG)
[NEHTTPEye setEnabled:YES];
endif
you can use use the shortcut (⌘ Command + n) , a double tap or shake device to call out the monitoring data interface
NEHTTPEyeViewController
You can also use the following code
if defined(DEBUG)||defined(_DEBUG)
NEHTTPEyeViewController *vc=[[NEHTTPEyeViewController alloc] init];
[self presentViewController:vc animated:YES completion:nil];
endif
In NEHTTPEye, the default password of database is "networkeye" ,and you can save 300 requests.
the database name is networkeye.sqlite,and stored in the cache directory.
define kSQLitePassword @"networkeye"
define kSaveRequestMaxCount 300
you can change it use NEHTTPModelManager [NEHTTPModelManager defaultManager].saveRequestMaxCount=300; [NEHTTPModelManager defaultManager].sqlitePassword=@"networkeye"; NetworkEye use FMDB and SQLCipher。 FMDB is used to store data,SQLCipher is used to encrypt the database。
Monitoring data interface supports some search conditions ,it is URL,statusCode,HTTPMethod,MIMEType。
Preview
Licenses
Contributors
thanks!
*Note that all licence references and agreements mentioned in the NetworkEye README section above
are relevant to that project's source code only.