Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <img src="#">
              
            
!

CSS

              
                
              
            
!

JS

              
                const cachedFetch = (url, options) => {
  let expiry = 5 * 60 // 5 min default
  if (typeof options === 'number') {
    expiry = options
    options = undefined
  } else if (typeof options === 'object') {
    // I hope you didn't set it to 0 seconds
    expiry = options.seconds || expiry
  }
  // Use the URL as the cache key to sessionStorage
  let cacheKey = url
  let cached = localStorage.getItem(cacheKey)
  let whenCached = localStorage.getItem(cacheKey + ':ts')
  if (cached !== null && whenCached !== null) {
    // it was in sessionStorage! Yay!
    // Even though 'whenCached' is a string, this operation
    // works because the minus sign tries to convert the
    // string to an integer and it will work.
    let age = (Date.now() - whenCached) / 1000
    if (age < expiry) {
      let ct = localStorage.getItem(cacheKey + ':ct')
      let blob
      if (ct && !(ct.match(/application\/json/i) || ct.match(/text\//i))) {
        console.log(cached)
        blob = dataURItoBlob(cached)
      } else {
        blob = new Blob([cached])
      }
      let response = new Response(blob)
      return Promise.resolve(response)
    } else {
      // We need to clean up this old key
      localStorage.removeItem(cacheKey)
      localStorage.removeItem(cacheKey + ':ts')
      localStorage.removeItem(cacheKey + ':ct')
    }
  }

  return fetch(url, options).then(response => {
    // let's only store in cache if the content-type is 
    // JSON or something non-binary
    if (response.status === 200) {
      let ct = response.headers.get('Content-Type')
      if (ct && (ct.match(/application\/json/i) || ct.match(/text\//i))) {
        // There is a .json() instead of .text() but 
        // we're going to store it in sessionStorage as 
        // string anyway.
        // If we don't clone the response, it will be 
        // consumed by the time it's returned. This 
        // way we're being un-intrusive. 
        response.clone().text().then(content => {
          localStorage.setItem(cacheKey, content)
          localStorage.setItem(cacheKey + ':ts', Date.now())
        })
      } else if (ct) {
        response.clone().blob().then(blob => {
          let reader = new window.FileReader()
          reader.readAsDataURL(blob)
          reader.onloadend = () => {
            localStorage.setItem(cacheKey, reader.result)
            localStorage.setItem(cacheKey + ':ts', Date.now())
            localStorage.setItem(cacheKey + ':ct', blob.type)
          }
        })
      }
    }
    return response
  })
}

// Thank you https://gist.github.com/fupslot/5015897#gistcomment-1580216
function dataURItoBlob(dataURI, callback) {
  // convert base64 to raw binary data held in a string
  // doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this
  var byteString = atob(dataURI.split(',')[1]);

  // separate out the mime component
  var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0]

  // write the bytes of the string to an ArrayBuffer
  var ab = new ArrayBuffer(byteString.length);
  var ia = new Uint8Array(ab);
  for (var i = 0; i < byteString.length; i++) {
    ia[i] = byteString.charCodeAt(i);
  }

  // write the ArrayBuffer to a blob, and you're done
  var bb = new Blob([ab]);
  return bb;
}

cachedFetch('https://httpbin.org/image/png')
  .then(r => r.blob())
  .then(imageblob => {
    let img = document.querySelector('img')
    img.src = URL.createObjectURL(imageblob);
    console.log('Image is ' + imageblob.size + ' bytes')
  })
              
            
!
999px

Console