0.0.2 • Published 8 years ago

if-got v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

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