JSFiddle - React, Tailwind, and code Playground

by robindrexler

HTML

<script src="https://unpkg.com/[email protected]/dist/localforage.min.js"></script>

JavaScript

async function run() {

  try {
    await window.localforage.setItem('test3', 'hello worl1d');
    alert(await window.localforage.getItem('test3'))
  } catch (e) {
    alert('failed to laod data')
  }
} 

run();