@hybrid-compute/core
v0.21.0
Published
Core orchestrator for dispatching compute tasks to local, threaded, or remote backends.
Downloads
358
Maintainers
Readme
@hybrid-compute/core
Part of the @hybrid-compute
monorepo.
See the main README for full project overview, usage examples, architecture, and contribution guidelines.
API Docs
HybridCompute Core API Documentation
📦 Package Info
This package provides:
- The core orchestrator
HybridComputeclass - Strategy-based task routing (
local,worker,remote, orauto) - Unified API for compute execution
Usage
npm install @hybrid-compute/coreimport { HybridCompute } from '@hybrid-compute/core';Usage with local
npm install @hybrid-compute/core
npm install @hybrid-compute/localimport { createHybridCompute } from '@hybrid-compute/core';
import { createLocalCompute } from '@hybrid-compute/local';
// Define a simple echo task
const echoTask = {
name: 'echo',
async run(input: string): Promise<string> {
return `Echo: ${input}`;
}
};
// Set up the local backend and register the task
const local = createLocalCompute();
local.registerTask(echoTask);
// Set up the HybridCompute instance with only the local backend
const compute = createHybridCompute({
local
});
// Run the task
async function main() {
try {
const result = await compute.runTask('echo', 'Hello from HybridCompute!');
console.log(result); // Output: Echo: Hello from HybridCompute!
} catch (error) {
console.error('Task failed:', error);
}
}
main();Usage with remote
npm install @hybrid-compute/core
npm install @hybrid-compute/remoteFetch
import { createHybridCompute } from '@hybrid-compute/core';
import { createRemoteCompute } from '@hybrid-compute/remote';
const remote = createRemoteCompute({
transport: 'fetch',
endpoint: 'https://your-remote-service.com/compute',
canRunTasks: ['echo']
});
const compute = createHybridCompute({
remote
});
async function main() {
try {
const result = await compute.runTask('echo', 'Remote via fetch!');
console.log(result); // Output from remote server
} catch (error) {
console.error('Task failed:', error);
}
}
main();Example server for the remote fetch example
import express from 'express';
const app = express();
const port = 3000;
// Middleware to parse JSON
app.use(express.json());
// Dummy task implementations
const tasks = {
echo: async (input) => {
return `Echo from remote server: ${input}`;
},
// Example additional task
reverse: async (input) => {
if (typeof input !== 'string') throw new Error('Input must be a string');
return input.split('').reverse().join('');
}
};
// Route to handle compute requests
app.post('/compute', async (req, res) => {
const { task, input } = req.body;
try {
if (!task || !tasks[task]) {
throw new Error(`Unknown task '${task}'`);
}
const result = await tasks[task](input);
res.json({ result });
} catch (error) {
res.status(400).json({ error: error.message });
}
});
app.listen(port, () => {
console.log(
`🧠 RemoteCompute server listening at http://localhost:${port}/compute`
);
});This can be tested locally:
curl -X POST http://localhost:3000/compute \
-H "Content-Type: application/json" \
-d '{"task": "echo", "input": "hello"}'WebSocket
import { createHybridCompute } from '@hybrid-compute/core';
import { createRemoteCompute } from '@hybrid-compute/remote';
const remote = createRemoteCompute({
transport: 'websocket',
endpoint: 'wss://your-remote-service.com/socket',
canRunTasks: ['echo']
});
const compute = createHybridCompute({
remote
});
async function main() {
try {
const result = await compute.runTask('echo', 'Remote via WebSocket!');
console.log(result); // Output from remote service
} catch (error) {
console.error('Task failed:', error);
}
}
main();Example server for the remote WebSocket example
import { WebSocketServer } from 'ws';
import http from 'http';
// Simple task definitions
const tasks = {
echo: async (input) => {
return `Echo from WebSocket server: ${input}`;
},
reverse: async (input) => {
if (typeof input !== 'string') throw new Error('Input must be a string');
return input.split('').reverse().join('');
}
};
// Create an HTTP server to attach WebSocket
const server = http.createServer();
const wss = new WebSocketServer({ server });
wss.on('connection', (ws) => {
ws.on('message', async (message) => {
let request;
try {
request = JSON.parse(message.toString());
} catch (err) {
ws.send(JSON.stringify({ id: null, error: 'Invalid JSON' }));
return;
}
const { id, task, input } = request;
if (!id || typeof task !== 'string') {
ws.send(JSON.stringify({ id, error: 'Missing or invalid task name' }));
return;
}
try {
if (!tasks[task]) throw new Error(`Unknown task '${task}'`);
const result = await tasks[task](input);
ws.send(JSON.stringify({ id, result }));
} catch (error) {
ws.send(JSON.stringify({ id, error: error.message }));
}
});
});
server.listen(3001, () => {
console.log(
'🔌 WebSocket RemoteCompute server listening at ws://localhost:3001'
);
});Usage with worker
npm install @hybrid-compute/core
npm install @hybrid-compute/workerCreate a file named worker.ts:
self.onmessage = async (event) => {
const { task, input, id } = event.data;
try {
let result;
switch (task) {
case 'echo':
result = `Echo from Worker: ${input}`;
break;
// Add more cases for additional tasks
default:
throw new Error(`Unknown task: ${task}`);
}
self.postMessage({ id, result });
} catch (error) {
self.postMessage({ id, error: (error as Error).message });
}
};And your main.ts:
import { createHybridCompute } from '@hybrid-compute/core';
import { createThreadedCompute } from '@hybrid-compute/worker';
// Worker must be served as a module
const worker = createThreadedCompute(
new URL('./worker.ts', import.meta.url).href,
['echo']
);
const compute = createHybridCompute({
worker
});
const main = async () => {
try {
const result = await compute.runTask('echo', 'Hello from Worker!');
console.log(result); // Echo from Worker: Hello from Worker!
} catch (error) {
console.error('Task failed:', error);
}
};
main();Contributing
Want to contribute? Please read the CONTRIBUTING.md and CODE_OF_CONDUCT.md
License
This project is licensed under the MIT License - see the LICENSE file for details.
Sponsor me
I'm an Open Source evangelist, creating stuff that does not exist yet to help get rid of secondary activities and to enhance systems already in place, be it documentation, tools or web sites.
The sponsorship is an unique opportunity to alleviate more hours for me to maintain my projects, create new ones and contribute to the large community we're all part of :)
Support me on GitHub Sponsors.
p.s. Ukraine is still under brutal Russian invasion. A lot of Ukrainian people are hurt, without shelter and need help. You can help in various ways, for instance, directly helping refugees, spreading awareness, putting pressure on your local government or companies. You can also support Ukraine by donating e.g. to Red Cross, Ukraine humanitarian organisation or donate Ambulances for Ukraine.
