JSFiddle - React, Tailwind, and code Playground

by justindeal

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.22.2/es6-shim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/superagent/0.15.7/superagent.min.js"></script>

JavaScript

try {
    var res = superagent
        .get('http://api.giphy.com/v1/gifs/random')
        .query({tag: 'funny cat', rating: 'g', api_key: 'dc6zaTOxFJmzC'})
        .set("X-Requested-With", null);
    
    document.body.innerHTML = '<img src="' + res.body.data.image_original_url + '"/>';
} catch (e) {
    document.body.innerHTML = "Oh noes, your funny cat could not be located!";
}