* 🔖 chore(release): release version v2.1.34 [skip ci] * 📝 docs: Polish documents * 📝 docs: Fix typo * 📝 docs: Update start * 📝 docs: Fix style * 📝 docs: Update start * 📝 docs: Update layout * 📝 docs: Fix typo * 📝 docs: Fix typo --------- Co-authored-by: lobehubbot <i@lobehub.com>
@lobechat/electron-server-ipc
IPC (Inter-Process Communication) module between LobeHub's Electron application and server, providing reliable cross-process communication capabilities.
📝 Introduction
@lobechat/electron-server-ipc is a core component of LobeHub's desktop application, responsible for handling communication between the Electron main process and Next.js server. It provides a simple yet robust API for passing data and executing remote method calls across different processes.
🛠️ Core Features
- Reliable IPC Communication: Socket-based communication mechanism ensuring stability and reliability of cross-process communication
- Automatic Reconnection: Client features automatic reconnection functionality to improve application stability
- Type Safety: Uses TypeScript to provide complete type definitions, ensuring type safety for API calls
- Cross-Platform Support: Supports Windows, macOS, and Linux platforms
🧩 Core Components
IPC Server (ElectronIPCServer)
Responsible for listening to client requests and responding, typically runs in Electron's main process:
import { ElectronIPCEventHandler, ElectronIPCServer } from '@lobechat/electron-server-ipc';
// Define handler functions
const eventHandler: ElectronIPCEventHandler = {
getDatabasePath: async () => {
return '/path/to/database';
},
// Other handler functions...
};
// Create and start server
const server = new ElectronIPCServer(eventHandler);
server.start();
IPC Client (ElectronIpcClient)
Responsible for connecting to the server and sending requests, typically used in the server (such as Next.js service):
import { ElectronIPCMethods, ElectronIpcClient } from '@lobechat/electron-server-ipc';
// Create client
const client = new ElectronIpcClient();
// Send request
const dbPath = await client.sendRequest(ElectronIPCMethods.getDatabasePath);
🤝 Contribution
IPC server implementations need to handle various communication scenarios and edge cases. We welcome community contributions to enhance reliability and functionality. You can participate in improvements through:
How to Contribute
- Performance Optimization: Improve IPC communication speed and reliability
- Error Handling: Enhance error recovery and reconnection mechanisms
- New Features: Add support for new IPC methods or communication patterns
- Documentation: Improve code documentation and usage examples
Contribution Process
- Fork the LobeHub repository
- Implement your improvements to the IPC server package
- Submit a Pull Request describing:
- Performance improvements or new features
- Testing methodology and results
- Compatibility considerations
- Usage examples
📌 Note
This is an internal module of LobeHub ("private": true), designed specifically for LobeHub desktop applications and not published as a standalone package.