Exploring PLCO data. Live at https://episphere.github.io/plco !
To use the PLCO SDK in a web app / web page, add this to the document header:
<script src='https://episphere.github.io/plco/plco.js'></script>
To use the custom HTML elements, add this to the document header:
<script src='https://episphere.github.io/plco/plcoHTMLElements.js'></script>
To make use of ES6 modules to load specific methods:
import { api } from 'https://episphere.github.io/plco/export.js'
console.log(api)
including dynamic import of the whole SDK:
plco = await import('https://episphere.github.io/plco/export.js')