Introducing ComputeSDK
A new way to embed compute capabilities into your applications
We’re excited to announce ComputeSDK, a developer-first primitive that allows you to embed compute capabilities directly into your applications. This post will walk you through our vision and how ComputeSDK can transform the way you build applications.
Why ComputeSDK?
As applications become more complex and compute-intensive, developers need better tools to handle these requirements. ComputeSDK provides a simple yet powerful solution that allows you to:
- Run arbitrary code securely
- Access file systems and terminals
- Connect directly from the browser
- Scale effortlessly
Getting Started
Here’s a simple example of how to use ComputeSDK:
import { ComputeClient } from 'computesdk';
const compute = new ComputeClient();
const result = await compute.exec(`
function hello(name) {
return `Hello, ${name}!`;
}
hello('World');
`);
console.log(result); // Output: Hello, World!
Stay tuned for more updates and detailed documentation!