Zova CLI

1.2.36 · active · verified Wed Apr 22

Zova CLI is the official command-line interface tool for the Zova framework, a comprehensive full-stack solution designed to offer an intuitive development experience by integrating the strengths of Vue3, React, and Angular. The CLI, currently at version 1.2.36, is actively maintained and updated in alignment with the Zova framework's ongoing development. Zova differentiates itself by streamlining reactivity (eliminating the need for `ref.value` in Vue3 contexts), adopting a flexible TSX-based rendering approach similar to React but with a simplified 'Render Class' model to reduce complexity, and leveraging a powerful, yet simplified, Inversion of Control (IOC) container inspired by Angular to unify state management. The CLI facilitates project creation, offering various templates like Quasar, Vuetify, and an empty base for other UI libraries, enabling developers to quickly set up Zova applications with SSR, modularization, and CSS-in-JS capabilities.

Common errors

Warnings

Install

Imports

Quickstart

Demonstrates the global installation of zova-cli, creation of a new Zova project with a specified template (Vuetify), installation of project dependencies, and starting the development server.

pnpm add -g zova-cli@latest

# Create a new Zova project using the Vuetify template
zova :create:project my-zova-app --template=vuetify

# Navigate into the new project directory
cd my-zova-app

# Install project dependencies (using pnpm)
pnpm install

# Start the development server
pnpm run dev

console.log('Zova development server typically runs on http://localhost:3000');

view raw JSON →