Skip to main content

Installation

Install the core implementation of Katavault using a package manager or via a CDN using a <script> tag.

Package manager

Install the required packages.

npm install algosdk@3.x @kibisis/katavault-core

CDN

If you're not using a package manager, you can install it via an ESM-compatible CDN such as esm.sh.

Add a <script type="module"> tag to the bottom of your HTML file with the following content.

<script type="module">
import 'https://esm.sh/algosdk';
import { createKatavault } from 'https://esm.sh/@kibisis/katavault-core';
</script>