UNPKG

reverse-image-search-google

Version:

A free solution for reverse image search using google

34 lines (27 loc) 1.08 kB
A free solution for reverse image search using Google Example: ``` const reverseImageSearch = require('reverse-image-search-google') const doSomething = (results) => { console.log(results) } reverseImageSearch('i.ebayimg.com/00/s/OTAwWDkwMA==/z/3G8AAOSwzoxd80XB/$_83.JPG', doSomething) ``` Output: ``` { url: 'https://www.bol.com/nl/p/nintendo-dsi-licht-blauw/1004004007240442/', title: 'Nintendo DSi - Licht Blauw | Games - bol.com' } { url: 'https://tweakers.net/pricewatch/248753/nintendo-dsi-licht-blauw/specificaties/', title: 'Nintendo DSi Licht Blauw - Kenmerken - Tweakers' } { url: 'https://www.marktplaats.nl/l/spelcomputers-en-games/spelcomputers-nintendo-ds/q/nintendo+dsi/', title: '≥ Vind nintendo dsi in Spelcomputers | Nintendo DS op ...' } { url: 'https://nl.webuy.com/search/?categoryIds=768&categoryName=nintendo-ds-consoles', title: 'Nintendo DS Consoles - CeX (NL) : Stock search' } { url: 'https://tweakers.net/pricewatch/248753/nintendo-dsi-licht-blauw.html', title: 'Nintendo DSi Licht Blauw - Prijzen - Tweakers' } ```