Getting started
Set up your first ViteHub package and continue with the KV quickstart.
ViteHub currently ships @vitehub/kv, @vitehub/db, @vitehub/blob, and server-side queueing through @vitehub/queue.
@vitehub/blob and @vitehub/queue both support Vite and Nitro.
This page gives you the first framework-specific setup step, then points you to the package docs where the full examples live.
Start with KV
Install the package:
pnpm add @vitehub/kv
Then register the Vite plugin:
vite.config.ts
import { defineConfig } from 'vite'
import { hubKv } from '@vitehub/kv/vite'
export default defineConfig({
plugins: [hubKv()],
})
After that, continue with the KV quickstart. Use the Nitro or Nuxt path when you need runtime reads and writes.
::

