@echelon-framework/cli
v0.7.1
Published
Echelon CLI — config validation, designer snapshots, scaffolding.
Downloads
79
Readme
@echelon-framework/cli
CLI tools for Echelon framework — validation, export, code generation.
Part of the Echelon Framework — Angular-based, config-driven dashboard & low-code platform.
Installation
npm install -D @echelon-framework/cliCommands
# Validate all page configs in project
npx echelon validate
# Validate specific file
npx echelon validate src/app/pages/clients.page.ts
# Export page configs to JSON
npx echelon export --output dist/pages.json
# List registered pages
npx echelon list-pagesProgrammatic API
import { validatePageConfig, exportPages } from '@echelon-framework/cli';
const errors = validatePageConfig(config);
if (errors.length > 0) console.error('Invalid:', errors);
const json = exportPages(configs);License
BUSL-1.1
