Installation
You can install Veloxi using your favorite package manager.
PNPM:
pnpm install veloxiNPM:
npm install veloxiYarn:
yarn add veloxiThen, import it like this:
import { createApp } from 'veloxi'
const app = createApp()Using Veloxi from CDN
You can include it directly in a script tag:
<script src="https://unpkg.com/veloxi/dist/veloxi.min.js"></script>Then, you can access its exports using the Veloxi global variable:
const app = Veloxi.createApp()