- NetworkS utilizes fundamental
URLSession
under the hood - NetworkS uses callback based approach for request making
- All interactions with NetworkS are based on protocols, so you can make your own implementations of
NetworkSessionInterface
,NetworkService
- NetworkS provides logger that prints beautifully crafted request/response events into Xcode console
- NetworkS provides the opportunity to renew session by updating authorization
- NetworkS supports SSL certificate pinning along with default challenge
- NetworkS supports easily implemented response mocking
- NetworkS supports response caching feature
import NetworkS
struct HttpbinOrgURL: RequestURLExtensible {
let path: String
var host: String { "httpbin.org" }
}
extension HttpbinOrgURL {
static let uuid = Self("/uuid")
}
import NetworkS
class UUIDRequest: NetworkRequest {
var url: RequestURL { HttpbinOrgURL.uuid }
var method: RequestMethod { .GET }
var encoding: RequestContentEncoding { .url }
}
import NetworkS
// Create session interface and use it across the app
let sessionAdapter = NetworkSessionAdapter()
sessionAdapter.defaultSSLChallengeEnabled = true
// Work with a new instance of network service
let worker = NetworkWorker(sessionInterface: sessionAdapter)
let request = UUIDRequest()
let task = worker.buildTask(from: request) { response in
if response.success,
let body = response.jsonBody,
let uuidString = body["uuid"] as? String {
print("UUID: " + uuidString)
}
}
task?.run()
NetworkS is released under the MIT license