Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

yande-api

skyneko7ISC1.0.2

npm install yande-api # Usage `javascript

readme

Installation

npm install yande-api

Usage


const yande = require("yande-api")

const limit = 10000 // limit post 

const tags = ["nipples"] // require tag

let filter = {
    tags: ["kimono"], 
    score: 100,
    fileSize: 0,
    width: 3000, // minimum width and height
    height: 2000,
    hasChildren: false,
    rating: "q"
}

yande.getPost(tags, limit, filter, (post) => {
    console.log("https://yande.re/post/show/"+post.id)
})