
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
fetch-gifs
Advanced tools
We help you fetch your GIFs, just pass in the search term and you are good to go! Fetch-gif requires a search term and optional arguments(offset and limit) and returns a Promise!
Simple! Just run:
npm install -save fetch-gifs
let name = 'star wars';
fetchGifs(name).then(res => {
console.log(res);
})
.catch(error => {
console.log(error);
});
{
data: [
0: {
"large": "https://media1.giphy.com/media/SG5W75KgppVq8/giphy.gif",
"large_fixed": "https://media1.giphy.com/media/SG5W75KgppVq8/giphy_s.gif",
"medium": "...",
"medium_fixed": "https://...",
"small: "https://...",
"small_fixed": "https://..."
},
1: { ... }
2: { ... }
],
more: true
}
We limited the number of gifs served to each user to 30, do you need more or less? Let's try writing something else
const name = 'star wars';
const limit = 20;
fetchGifs(name, { limit }).then(res => {
console.log(res); // res.data length equals 20
})
.catch(error => {
console.log(error);
});
The default offset is set to 0. Let's try searching from the the 20th position to the 40th
const name = 'star wars';
const limit = 20;
const offset = 40;
fetchGifs(name, { offset, limit }).then(res => {
console.log(res); // res.data length equals 20, starts from position 20, stops at 40
})
.catch(error => {
console.log(error);
});
You can also make use of fetch-gifs, just grab our latest release here
Contributing to this repo is simple. We prefer single quotes, descriptive commit messages, commiting to a new branch indicating what changed e.g fix/fixed-async-flow, feature/added-test, feat/added-test. Push the new branch!
FAQs
Promise Based GIF image fetcher
We found that fetch-gifs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.