NetworkEye alternatives and similar libraries
Based on the "Networking" category.
Alternatively, view NetworkEye alternatives based on common mentions on social networks and blogs.
-
AFNetworking
A delightful networking framework for iOS, macOS, watchOS, and tvOS. -
CocoaAsyncSocket
Asynchronous socket networking library for Mac and iOS -
RestKit
RestKit is a framework for consuming and modeling RESTful web resources on iOS and OS X -
YTKNetwork
YTKNetwork is a high level request util based on AFNetworking. -
Reachability.swift
Replacement for Apple's Reachability re-written in Swift with closures -
ASIHTTPRequest
Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone -
swift-protobuf
Plugin and runtime library for using protobuf with Swift -
apollo-ios
📱 A strongly-typed, caching GraphQL client for iOS, written in Swift. -
RealReachability
We need to observe the REAL reachability of network. That's what RealReachability do. -
Netfox
A lightweight, one line setup, iOS / OSX network debugging library! 🦊 -
MonkeyKing
MonkeyKing helps you to post messages to Chinese Social Networks. -
SwiftHTTP
Thin wrapper around NSURLSession in swift. Simplifies HTTP requests. -
APIKit
Type-safe networking abstraction layer that associates request type with response type. -
ResponseDetective
Sherlock Holmes of the networking layer. :male_detective: -
Networking
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. -
Pitaya
🏇 A Swift HTTP / HTTPS networking library just incidentally execute on machines -
SPTDataLoader
The HTTP library used by the Spotify iOS client -
Reach
A simple class to check for internet connection availability in Swift. -
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. -
TRON
Lightweight network abstraction layer, written on top of Alamofire -
TWRDownloadManager
A modern download manager based on NSURLSession to deal with asynchronous downloading, management and persistence of multiple files. -
Transporter
A tiny library makes uploading and downloading easier -
Restofire
Restofire is a protocol oriented networking client for Alamofire -
ws ☁️
⚠️ Deprecated - (in favour of Networking) :cloud: Elegantly connect to a JSON api. (Alamofire + Promises + JSON Parsing) -
EVURLCache
a NSURLCache subclass for handling all web requests that use NSURLRequest -
AFNetworking+RetryPolicy
Nice category that adds the ability to set the retry interval, retry count and progressiveness. -
MultiPeer
📱📲 A wrapper for the MultipeerConnectivity framework for automatic offline data transmission between devices -
AFNetworking-Synchronous
Synchronous requests for AFNetworking 1.x, 2.x, and 3.x -
ROADFramework
ROAD – Rapid Objective-C Applications Development
Appwrite - The Open Source Firebase alternative introduces iOS support
* 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][email protected]"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.