Skip to content

nodezoo/ios-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NodeZooSDK

An iOS SDK for nodezoo to search the public packaged from https://nodezoo.com/

NodeZooService Initializer with API Key

import NodeZooService

let nodeZooService = NodeZooService(apiKey: "<API Key of >")

This initializer creates a 'NodeZooService` instance.

Parameters

Usage

Search the public package as follows:

let dataTask = nodeZooService.search("express") { result in
    switch result {
    case .success(let packages):
        // packages is the array of the found packages
    case .failure(let error):
        // handle the error here.
}

The dataTask can be used to cancel the search.

Releases

No releases published

Packages

No packages published

Languages