Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 749 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 749 Bytes

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.