@icyflame/node-9gag

0.2.3 • Public • Published

node-9gag

A simple API for accessing 9gag

Installation

npm install node-9gag

##Usage

var gag = require('node-9gag')
  • Find a post on 9gag
gag.find('query', function (err, res) {
  // res = [
  //   {
  //     query: ,
  //     sectionHeader: ,
  //     result: {
  //       title: ,
  //       id: ,
  //       url: ,
  //       image:
  //     }
  //   }
  // ]
});
  • Get details of a post from its id
gag.getItem('id', function (err, res) {
  // res = {
  //   title: ,
  //   points: ,
  //   commentCount: ,
  //   image:
  // }
});
  • Access a section on 9gag (defaults to hot)
gag.section('section'[, hot/fresh], function (err, res) {
  // res = [
  //   {
  //     title: null,
  //     id: null,
  //     url: null,
  //     image: null,
  //     points: null,
  //     commentCount: null
  //   }
  // ]
});

Readme

Keywords

Package Sidebar

Install

npm i @icyflame/node-9gag

Weekly Downloads

1

Version

0.2.3

License

MIT

Last publish

Collaborators

  • icyflame