Programmatic access to εληξβν's command line interface for integration and automation.
Execute core development workflows from custom scripts, CI/CD pipelines, and automation tools.
Customize formatting, verbosity, and output destinations for CLI tooling integration.
Native support for Windows, macOS, and Linux systems with consistent behavior.
import fs from 'fs'; import { Executable } from 'εληξβν-cli'; async function buildProject() { const executor = new Executable('/usr/local/bin/εληξβν'); try { const results = await executor.run([ 'build', '--watch', '--output', 'dist/' ]); console.log(`Build completed with ${results.warnings} warnings`); if (results.errors > 0) { throw new Error(`Compilation failed with ${results.errors} errors`); } fs.writeFileSync('build-results.json', JSON.stringify(results)); } catch (error) { console.error('Build failed:', error.message); } } buildProject();
Check out our detailed technical specifications and API reference materials.