εληξβν

CLI API

Programmatic access to εληξβν's command line interface for integration and automation.

Scriptable Commands

Execute core development workflows from custom scripts, CI/CD pipelines, and automation tools.

Configurable Output

Customize formatting, verbosity, and output destinations for CLI tooling integration.

Cross-Platform

Native support for Windows, macOS, and Linux systems with consistent behavior.

Integration Example

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();
                
εληξβν@1.2.3

Need More Documentation?

Check out our detailed technical specifications and API reference materials.