Skip to content

Browser JavaScript

It provides the same interface as the Python SDK in the browser.
Just create an index.html file in the .skills/ folder and run it directly with “Web Preview”.

<script src="/api/sdk/zio_ontology.js"></script>
<script>
(async () => {
// 고객 전체 목록 조회 → 테이블 렌더링
const customers = await Zio.node("Customer").fetch();
Zio.renderTable("#customer-table", customers);
})();
</script>