Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.01 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.01 KB

PLCO

Join the chat at https://gitter.im/episphere/plco

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')