 85bf1341f3
			
		
	
	85bf1341f3
	
	
	
		
			
			Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Lilconfig ⚙️
 | |
| [](https://badge.fury.io/js/lilconfig)
 | |
| [](https://packagephobia.now.sh/result?p=lilconfig)
 | |
| [](https://coveralls.io/github/antonk52/lilconfig)
 | |
| 
 | |
| A zero-dependency alternative to [cosmiconfig](https://www.npmjs.com/package/cosmiconfig) with the same API.
 | |
| 
 | |
| ## Installation
 | |
| 
 | |
| ```sh
 | |
| npm install lilconfig
 | |
| ```
 | |
| 
 | |
| ## Usage
 | |
| 
 | |
| ```js
 | |
| import {lilconfig, lilconfigSync} from 'lilconfig';
 | |
| 
 | |
| // all keys are optional
 | |
| const options = {
 | |
|     stopDir: '/Users/you/some/dir',
 | |
|     searchPlaces: ['package.json', 'myapp.conf.js'],
 | |
|     ignoreEmptySearchPlaces: false
 | |
| }
 | |
| 
 | |
| lilconfig(
 | |
|     'myapp',
 | |
|     options // optional
 | |
| ).search() // Promise<LilconfigResult>
 | |
| 
 | |
| lilconfigSync(
 | |
|     'myapp',
 | |
|     options // optional
 | |
| ).load(pathToConfig) // LilconfigResult
 | |
| 
 | |
| /**
 | |
|  * LilconfigResult
 | |
|  * {
 | |
|  *   config: any; // your config
 | |
|  *   filepath: string;
 | |
|  * }
 | |
|  */
 | |
| ```
 | |
| 
 | |
| ## ESM
 | |
| 
 | |
| ESM configs can be loaded with **async API only**. Specifically `js` files in projects with `"type": "module"` in `package.json` or `mjs` files.
 | |
| 
 | |
| ## Difference to `cosmiconfig`
 | |
| Lilconfig does not intend to be 100% compatible with `cosmiconfig` but tries to mimic it where possible. The key difference is **no** support for yaml files out of the box(`lilconfig` attempts to parse files with no extension as JSON instead of YAML). You can still add the support for YAML files by providing a loader, see an [example](#yaml-loader) below.
 | |
| 
 | |
| ### Options difference between the two.
 | |
| 
 | |
| |cosmiconfig option      | lilconfig |
 | |
| |------------------------|-----------|
 | |
| |cache                   | ✅        |
 | |
| |loaders                 | ✅        |
 | |
| |ignoreEmptySearchPlaces | ✅        |
 | |
| |packageProp             | ✅        |
 | |
| |searchPlaces            | ✅        |
 | |
| |stopDir                 | ✅        |
 | |
| |transform               | ✅        |
 | |
| 
 | |
| ## Loaders examples
 | |
| 
 | |
| ### Yaml loader
 | |
| 
 | |
| If you need the YAML support you can provide your own loader
 | |
| 
 | |
| ```js
 | |
| import {lilconfig} from 'lilconfig';
 | |
| import yaml from 'yaml';
 | |
| 
 | |
| function loadYaml(filepath, content) {
 | |
|     return yaml.parse(content);
 | |
| }
 | |
| 
 | |
| const options = {
 | |
|     loaders: {
 | |
|         '.yaml': loadYaml,
 | |
|         '.yml': loadYaml,
 | |
|         // loader for files with no extension
 | |
|         noExt: loadYaml
 | |
|     }
 | |
| };
 | |
| 
 | |
| lilconfig('myapp', options)
 | |
|     .search()
 | |
|     .then(result => {
 | |
|         result // {config, filepath}
 | |
|     });
 | |
| ```
 | |
| 
 | |
| ## Version correlation
 | |
| 
 | |
| - lilconig v1 → cosmiconfig v6
 | |
| - lilconig v2 → cosmiconfig v7
 | |
| - lilconig v3 → cosmiconfig v8
 |