Installation
You can install Veloxi using your favorite package manager.
PNPM:
pnpm install veloxi
NPM:
npm install veloxi
Yarn:
yarn add veloxi
Then, 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()