Skip to content
eloxi
v0.12.0

Installation

You can install Veloxi using your favorite package manager.

PNPM:

Terminal window
pnpm install veloxi

NPM:

Terminal window
npm install veloxi

Yarn:

Terminal window
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()