if-got
v0.0.2
Published
got extension for Iconfinder API
Downloads
3
Readme
if-got ![Build Status](https://travis-ci.org/ragingwind/ if-got.svg?branch=master)
got extension for Iconfinder API
Install
$ npm install --save if-got
Usage
const ifGot = require('if-got');
ifGot('icons/search', {query: {query: 'app'}}).then(res => {
console.log(res.body.total_count);
});
Or:
const ifGot = require('if-got');
ifGot('https://api.iconfinder.com/v2/icons/search', {query: {query: 'app'}}).then(res => {
console.log(res.body.total_count);
});
API
Supporting APIs same as got even stream API, but GET
method is only supported now.
License
MIT © Jimmy Moon