Package Exports
- vize
- vize/config
Readme
Vize
High-performance Vue.js toolchain in Rust.
Installation
# Install from npm
npm install -g vize
# Or install from GitHub
npm install -g github:ubugeeei/vizeUsage
vize [COMMAND] [OPTIONS]| Command | Description |
|---|---|
build |
Compile Vue SFC files (default) |
fmt |
Format Vue SFC files |
lint |
Lint Vue SFC files |
check |
Type check Vue SFC files |
musea |
Start component gallery server |
lsp |
Start Language Server Protocol server |
vize --help # Show help
vize <command> --help # Show command-specific helpExamples
vize # Compile ./**/*.vue to ./dist
vize build src/**/*.vue -o out # Custom input/output
vize build --ssr # SSR mode
vize fmt --check # Check formatting
vize lint --fix # Auto-fix lint issues
vize check --strict # Strict type checkingAlternative Installation
If npm installation fails, you can install via Cargo:
cargo install vizeLicense
MIT