gifcities
Version:
Simple wrapper around the Geocities Animated GIF Search Engine
20 lines (15 loc) • 802 B
Markdown
> A simple wrapper around [the Geocities Animated GIF Search Engine](http://www.gifcities.org/)
Please consider [donating](https://archive.org/donate) to help [The Internet Archive](http://archive.org) continue to provide "Universal Access to All Knowledge".
> GifCities is a special project of the Internet Archive to celebrate 20 years of preserving the web. Internet Archive is a non-profit digital library of millions of free books, movies, software, music, websites, and more.
```javascript
const gifcities = require('gifcities');
gifcities('taylor swift', function (err, gifs) {
const gif = gifs[0]
console.log(gifs.length) // 1
console.log(gif.width) // 200
console.log(gif.height) // 100
console.log(gif.page) // http://...
console.log(gif.url) // http://...
})
```