Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.