sungwoncho / node-producthunt

node.js wrapper for the Product Hunt API

Home Page:http://sungwoncho.github.io/node-producthunt/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-producthunt Build Status

Fully tested and documented node.js wrapper for the Product Hunt API

Install

npm install producthunt

Usage

The following is an example usage with a client level authentication.

var productHuntAPI = require('producthunt');

var productHunt = new productHuntAPI({
  client_id: // your client_id
  client_secret: // your client_secret
  grant_type: 'client_credentials'
});

// List all live events and filter by category
productHunt.live.index({search: {category: 'tech'}}, function (err, res) {
  // do something with the response
});

Documentation

The sources files are fully documented. You can also refer to this auto-generated documentation.

API Version

This module supports the latest v1 API of Product Hunt.

Contributing

Please open issues with feature requests and bugs.

License

MIT

About

node.js wrapper for the Product Hunt API

http://sungwoncho.github.io/node-producthunt/

License:MIT License


Languages

Language:JavaScript 100.0%