@sequentialos/desktop-server
v1.0.0
Published
Modular server for Sequential Desktop with app registry and plugin system
Maintainers
Readme
@sequential/desktop-server
Modular Express server for Sequential Desktop with app registry, plugin system, and dynamic app discovery.
Installation
npm install @sequential/desktop-serverUsage
import {{ DesktopServer }} from '@sequential/desktop-server';
const service = new DesktopServer({{ /* config */ }});
const result = await service.execute(input);API
Methods
execute(input)- Execute service operationvalidate(input)- Validate input against schemagetStatus()- Get service status
Configuration
Service behavior controlled via configuration:
{{
timeout: 5000,
retries: 3,
debug: false
}}Error Handling
Uses standardized error handling from @sequential/error-handling:
try {{
const result = await service.execute(input);
}} catch (error) {{
console.error(error.message);
}}Related Packages
- @sequential/task-execution-service - Task execution
- @sequential/error-handling - Error handling
License
MIT
