npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@vonreyher-media/cvrocket

v0.1.0

Published

CVRocket ist ein modularer, flexibler und performance-orientierter Form Builder für React – designt für Conversion-getriebene Use Cases wie Lead-Formulare, Onboardings, Funnels und interaktive Umfragen.

Readme

🚀 CVRocket – Developer-First Form Framework

CVRocket ist ein modularer, flexibler und performance-orientierter Form Builder für React – designt für Conversion-getriebene Use Cases wie Lead-Formulare, Onboardings, Funnels und interaktive Umfragen.

GitHub Stars NPM version


🎯 Highlights

| Feature | CVRocket | | ---------------- | ------------------------------- | | TypeSafe | ✅ Zod-Schema Validierung | | Responsive | ✅ Mobile-First Layouts | | Event-driven | ✅ Reaktive Analytics | | Modular | ✅ Jede Seite einzeln steuerbar | | Headless | ✅ Volle UI-Kontrolle | | Open Source | ✅ Apatche 2.0 |


🔥 Why CVRocket?

| Feature | CVRocket | | ---------------------- | ------------------------------- | | Open Source | ✅ Fully MIT licensed | | Customizable | ✅ Code-first, not config-first | | Headless / UI-free | ✅ Use your own components | | Analytics Ready | ✅ Event bus, event props | | Mobile-First | ✅ Responsive by design | | Zero Lock-in | ✅ No tracking, no vendor tie |

CVRocket is the right choice if you want to:

  • Build deeply customized forms and flows.
  • Fully control UX, validation, and navigation.
  • Track all steps, events, and data interactions.
  • Own your data. Run your forms serverless, or in your own stack.

📦 Installation

npm i @vonreyher-media/cvrocket
pnpm add @vonreyher-media/cvrocket

Peer Dependencies

Du musst folgende Peer Dependencies selbst installieren:

npm i react react-dom zod react-hook-form @hookform/resolvers @motionone/dom class-variance-authority clsx framer-motion lucide-react tailwind-merge
pnpm add react react-dom zod react-hook-form @hookform/resolvers @motionone/dom class-variance-authority clsx framer-motion lucide-react tailwind-merge

🔧 Quick Start

import {
  CVRocketProvider,
  MultiSelectPage,
  OneSelectPage,
  UniversalFormPage,
  ThankYouClassic,
} from '@vonreyher-media/cvrocket';

function ExampleForm() {
  return (
    <CVRocketProvider
      onComplete={(data) => console.log(data)}
      persistData
      warnBeforeUnload
    >
      <MultiSelectPage datakey="symptoms" title="Wie fühlst du dich?" />
      <OneSelectPage datakey="goal" title="Dein Ziel?" />
      <UniversalFormPage
        datakey="profile"
        title="Über dich"
        zodSchema={yourZodSchema}
      >
        <UniversalInputField name="name" label="Name" />
      </UniversalFormPage>
      <ThankYouClassic title="Danke!" />
    </CVRocketProvider>
  );
}

🧠 Features

🧩 Page Types

  • EmptyPage
  • MultiSelectPage
  • OneSelectPage
  • SliderSelectPage
  • UniversalFormPage
  • ThankYouClassic, ThankYouMinimal, ThankYouPersonal

🧑‍💻 Developer-Fokus

  • Komplett in TypeScript
  • Zod-basierte Validierung
  • Eigener Event Bus (emit, subscribe)
  • AGB Checkbox optional pro Page
  • Persistente Speicherung lokal
  • Auto-Next, Button-Footer, Toast-System
  • Bedingtes Rendering für dynamische Seiten

🔄 Bedingtes Rendering

CVRocket unterstützt bedingtes Rendering von Seiten basierend auf Formulardaten oder anderen Bedingungen:

// Einfache Boolean-Bedingung
<PageTemplate renderCondition={someBooleanValue}>
  <YourContent />
</PageTemplate>

// Dynamische Bedingung mit Funktion
<PageTemplate
  renderCondition={() => {
    const { data } = useCVRocket();
    return data.someField === 'expectedValue';
  }}
>
  <YourContent />
</PageTemplate>

Die renderCondition Property kann entweder:

  • Ein Boolean-Wert sein
  • Eine Funktion, die einen Boolean zurückgibt
  • Optional sein (Standard: true)

📊 Tracking Events

  • form_started
  • form_completed
  • form_error
  • step_changed
  • field_changed
  • next_step
  • previous_step

🗂 Struktur

cvrocket/
├── apps/demo          # Vite-Demo
└── packages/core      # Hauptpaket (cvrocket)
    ├── components     # UI-Komponenten
    ├── pages          # Seitenbausteine
    ├── providers      # Context Provider
    ├── hooks          # Hilfsfunktionen

🧪 You want to test it first or create some PRs?

Checkout our Github Repo: CVRocket

🎯 Roadmap

  • [ ] Mehrsprachigkeit (aktuell nur Deutsch)
  • [ ] Neue Page-Templates & UI-Varianten
  • [ ] Community-Template-Bibliothek
  • [ ] Accessibility erweitern (Slider, ARIA, etc.)
  • [ ] Routing zwischen Steps (tree/event-based)
  • [ ] Toast-System konfigurierbar
  • [ ] Versionierung von Persistenz-Daten

📄 Lizenz

Apache 2.0 für private, interne oder akademische Nutzung. Für kommerzielle SaaS-Nutzung mit Resale-Charakter kann eine Attribution oder kommerzielle Lizenz notwendig sein. Kontaktiere uns bei Fragen.


🌐 Website

📍 Soon: cvrocket.vonreyher.media


Crafted with ❤️ by @vonReyherMedia