0.0.3 • Published 7 years ago

scragram v0.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

Scragram

NPM

const scragram = require('scragram')
const hashTag = 'streaming'

// It allows to quickly consult the link of the top posts.
scragram.getLinksTopPost(hashTag, (err, data) => {
  err ? console.log(err):console.log(data)
})

/***
 data out
 {
   "data":[
     "link1.jpg",
     ....
     ....
     "link10.jpg"
   ]
 }
***/

Use in console

Install

(sudo) npm install scragram -g

Use

scragram yourhashtag

Example

scragram streaming