Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
async-g-i-s
Advanced tools
Async and new alternative for the g-i-s.
This package works with fetch
api, if you use it on older versions of Node.js, you need to install node-fetch
package defined in package.json.
const gis = require('async-g-i-s');
(async () => {
try {
const results = await gis("akif");
console.log(results.slice(0, 10));
} catch (e) {
console.error(e);
}
})();
const gis = require('async-g-i-s');
gis("akif").then(console.log).catch(console.error);
[
{
url: 'https://m.media-amazon.com/images/M/MV5BMWQwM2M4NDMtOTI3Ni00NTMyLWI4YzktYTNkMjcyYmYzNzY4XkEyXkFqcGdeQXVyMTMyMTYxODIy._V1_.jpg',
height: 1477,
width: 1034
},
{
url: 'https://upload.wikimedia.org/wikipedia/tr/c/ca/AkifDizi.jpg',
height: 350,
width: 350
},
{
url: 'https://upload.wikimedia.org/wikipedia/commons/7/7b/Mehmet_%C3%82kif_Ersoy.png',
height: 1908,
width: 1656
},
{
url: 'https://erdemyayinlari.com.tr/wp-content/uploads/2021/12/akif.png',
height: 450,
width: 300
},
{
url: 'https://cdnuploads.aa.com.tr/uploads/Contents/2021/12/26/thumbs_b_c_8d154765bbfa0e823854bff84badecad.jpg?v\\u003d132249',
height: 486,
width: 864
},
{
url: 'https://img.kitapyurdu.com/v1/getImage/fn:11653825/wh:true/wi:500',
height: 779,
width: 500
},
{
url: 'https://img.a.transfermarkt.technology/portrait/big/526642-1629104912.jpg?lm\\u003d1',
height: 390,
width: 300
},
{
url: 'https://i.ytimg.com/vi/Ycm31r2SaPo/maxresdefault.jpg',
height: 720,
width: 1280
}
]
gis("", {
query: {},
userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36'
});
safe: "on"
to filter out NSFW results.gis("akif", {
query: { safe: "on" },
userAgent: 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)'
});
Example, this will not fetch NSFW results. And change user agent to Googlebot.
FAQs
Async Google Image Search
We found that async-g-i-s demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.