Just Bash
Installation & Setup
npm install @computesdk/just-bashUsage
import { justBash } from '@computesdk/just-bash';
const compute = justBash({});
// Create sandbox
const sandbox = await compute.sandbox.create();
// Run a command
const result = await sandbox.runCommand('echo "Hello from just-bash!"');
console.log(result.stdout); // "Hello from just-bash!"
// Clean up
await sandbox.destroy();Configuration Options
Supported Operations
Method
Supported
Notes
Notes
Last updated
Was this helpful?