Tenki
Installation & Setup
npm install @computesdk/tenkiTENKI_API_KEY=tk_your_api_keyUsage
import { tenki } from '@computesdk/tenki';
const compute = tenki({
apiKey: process.env.TENKI_API_KEY,
});
// Create sandbox
const sandbox = await compute.sandbox.create();
// Run a command
const result = await sandbox.runCommand('echo "Hello from Tenki!"');
console.log(result.stdout); // "Hello from Tenki!"
// Clean up
await sandbox.destroy();Configuration Options
Supported Operations
Method
Supported
Notes
Notes
Last updated
Was this helpful?