---
title: Execute commands
description: Run commands with streaming output, error handling, and shell access.
image: https://edgetunnel-b2h.pages.dev/dev-products-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/sandbox/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Execute commands

This guide shows you how to execute commands in the sandbox, handle output, and manage errors effectively.

## Choose the right method

The SDK provides multiple approaches for running commands:

* **`exec()`** \- Run a command and wait for complete result. Best for one-time commands like builds, installations, and scripts.
* **`execStream()`** \- Stream output in real-time. Best for long-running commands where you need immediate feedback.
* **`startProcess()`** \- Start a background process. Best for web servers, databases, and services that need to keep running.

Note

For **web servers, databases, or services that need to keep running**, use `startProcess()` instead. See the [Background processes guide](https://edgetunnel-b2h.pages.dev/sandbox/guides/background-processes/).

## Execute basic commands

Use `exec()` for simple commands that complete quickly:

* [  JavaScript ](#tab-panel-11193)
* [  TypeScript ](#tab-panel-11194)

**JavaScript**

```js
import { getSandbox } from "@cloudflare/sandbox";


const sandbox = getSandbox(env.Sandbox, "my-sandbox");


// Execute a single command
const result = await sandbox.exec("python --version");


console.log(result.stdout); // "Python 3.11.0"
console.log(result.exitCode); // 0
console.log(result.success); // true
```

**TypeScript**

```ts
import { getSandbox } from '@cloudflare/sandbox';


const sandbox = getSandbox(env.Sandbox, 'my-sandbox');


// Execute a single command
const result = await sandbox.exec('python --version');


console.log(result.stdout);   // "Python 3.11.0"
console.log(result.exitCode); // 0
console.log(result.success);  // true
```

## Pass arguments safely

When passing user input or dynamic values, avoid string interpolation to prevent injection attacks:

* [  JavaScript ](#tab-panel-11195)
* [  TypeScript ](#tab-panel-11196)

**JavaScript**

```js
// Unsafe - vulnerable to injection
const filename = userInput;
await sandbox.exec(`cat ${filename}`);


// Safe - use proper escaping or validation
const safeFilename = filename.replace(/[^a-zA-Z0-9_.-]/g, "");
await sandbox.exec(`cat ${safeFilename}`);


// Better - write to file and execute
await sandbox.writeFile("/tmp/input.txt", userInput);
await sandbox.exec("python process.py /tmp/input.txt");
```

**TypeScript**

```ts
// Unsafe - vulnerable to injection
const filename = userInput;
await sandbox.exec(`cat ${filename}`);


// Safe - use proper escaping or validation
const safeFilename = filename.replace(/[^a-zA-Z0-9_.-]/g, '');
await sandbox.exec(`cat ${safeFilename}`);


// Better - write to file and execute
await sandbox.writeFile('/tmp/input.txt', userInput);
await sandbox.exec('python process.py /tmp/input.txt');
```

## Handle errors

Commands can fail in two ways:

1. **Non-zero exit code** \- Command ran but failed (result.success === false)
2. **Execution error** \- Command couldn't start (throws exception)

* [  JavaScript ](#tab-panel-11209)
* [  TypeScript ](#tab-panel-11210)

**JavaScript**

```js
try {
  const result = await sandbox.exec("python analyze.py");


  if (!result.success) {
    // Command failed (non-zero exit code)
    console.error("Analysis failed:", result.stderr);
    console.log("Exit code:", result.exitCode);


    // Handle specific exit codes
    if (result.exitCode === 1) {
      throw new Error("Invalid input data");
    } else if (result.exitCode === 2) {
      throw new Error("Missing dependencies");
    }
  }


  // Success - process output
  return JSON.parse(result.stdout);
} catch (error) {
  // Execution error (couldn't start command)
  console.error("Execution failed:", error.message);
  throw error;
}
```

**TypeScript**

```ts
try {
  const result = await sandbox.exec('python analyze.py');


  if (!result.success) {
    // Command failed (non-zero exit code)
    console.error('Analysis failed:', result.stderr);
    console.log('Exit code:', result.exitCode);


    // Handle specific exit codes
    if (result.exitCode === 1) {
      throw new Error('Invalid input data');
    } else if (result.exitCode === 2) {
      throw new Error('Missing dependencies');
    }
  }


  // Success - process output
  return JSON.parse(result.stdout);


} catch (error) {
  // Execution error (couldn't start command)
  console.error('Execution failed:', error.message);
  throw error;
}
```

## Execute shell commands

The sandbox supports shell features like pipes, redirects, and chaining:

* [  JavaScript ](#tab-panel-11199)
* [  TypeScript ](#tab-panel-11200)

**JavaScript**

```js
// Pipes and filters
const result = await sandbox.exec('ls -la | grep ".py" | wc -l');
console.log("Python files:", result.stdout.trim());


// Output redirection
await sandbox.exec("python generate.py > output.txt 2> errors.txt");


// Multiple commands
await sandbox.exec("cd /workspace && npm install && npm test");
```

**TypeScript**

```ts
// Pipes and filters
const result = await sandbox.exec('ls -la | grep ".py" | wc -l');
console.log('Python files:', result.stdout.trim());


// Output redirection
await sandbox.exec('python generate.py > output.txt 2> errors.txt');


// Multiple commands
await sandbox.exec('cd /workspace && npm install && npm test');
```

## Execute Python scripts

* [  JavaScript ](#tab-panel-11207)
* [  TypeScript ](#tab-panel-11208)

**JavaScript**

```js
// Run inline Python
const result = await sandbox.exec('python -c "print(sum([1, 2, 3, 4, 5]))"');
console.log("Sum:", result.stdout.trim()); // "15"


// Run a script file
await sandbox.writeFile(
  "/workspace/analyze.py",
  `
import sys
print(f"Argument: {sys.argv[1]}")
`,
);


await sandbox.exec("python /workspace/analyze.py data.csv");
```

**TypeScript**

```ts
// Run inline Python
const result = await sandbox.exec('python -c "print(sum([1, 2, 3, 4, 5]))"');
console.log('Sum:', result.stdout.trim()); // "15"


// Run a script file
await sandbox.writeFile('/workspace/analyze.py', `
import sys
print(f"Argument: {sys.argv[1]}")
`);


await sandbox.exec('python /workspace/analyze.py data.csv');
```

## Timeouts

Set a maximum execution time for commands to prevent long-running operations from blocking indefinitely.

### Per-command timeout

Pass `timeout` in the options to set a timeout for a single command:

* [  JavaScript ](#tab-panel-11197)
* [  TypeScript ](#tab-panel-11198)

**JavaScript**

```js
const result = await sandbox.exec("npm run build", {
  timeout: 30000, // 30 seconds
});
```

**TypeScript**

```ts
const result = await sandbox.exec('npm run build', {
  timeout: 30000 // 30 seconds
});
```

### Session-level timeout

Set a default timeout for all commands in a session with `commandTimeoutMs`:

* [  JavaScript ](#tab-panel-11203)
* [  TypeScript ](#tab-panel-11204)

**JavaScript**

```js
const session = await sandbox.createSession({
  commandTimeoutMs: 10000, // 10s default for all commands
});


await session.exec("npm install"); // Times out after 10s
await session.exec("npm run build"); // Times out after 10s


// Per-command timeout overrides the session default
await session.exec("npm test", { timeout: 60000 }); // 60s for this command
```

**TypeScript**

```ts
const session = await sandbox.createSession({
  commandTimeoutMs: 10000 // 10s default for all commands
});


await session.exec('npm install');    // Times out after 10s
await session.exec('npm run build');  // Times out after 10s


// Per-command timeout overrides the session default
await session.exec('npm test', { timeout: 60000 }); // 60s for this command
```

### Global timeout

Set the `COMMAND_TIMEOUT_MS` [environment variable](https://edgetunnel-b2h.pages.dev/sandbox/configuration/environment-variables/#command%5Ftimeout%5Fms) to define a global default timeout for every `exec()` call across all sessions.

### Timeout precedence

When multiple timeouts are configured, the most specific value wins:

1. **Per-command** `timeout` on `exec()` (highest priority)
2. **Session-level** `commandTimeoutMs` on `createSession()`
3. **Global** `COMMAND_TIMEOUT_MS` environment variable (lowest priority)

If none are set, commands run without a timeout.

### Timeout does not kill the process

Warning

When a command times out, the SDK raises an error and closes the connection. The underlying process **continues running** inside the container. To stop a timed-out process, delete the session with [deleteSession()](https://edgetunnel-b2h.pages.dev/sandbox/api/sessions/#deletesession) or destroy the sandbox with [destroy()](https://edgetunnel-b2h.pages.dev/sandbox/api/lifecycle/#destroy).

## Best practices

* **Check exit codes** \- Always verify `result.success` and `result.exitCode`
* **Validate inputs** \- Escape or validate user input to prevent injection
* **Use streaming** \- For long operations, use `execStream()` for real-time feedback
* **Use background processes** \- For services that need to keep running (web servers, databases), use the [Background processes guide](https://edgetunnel-b2h.pages.dev/sandbox/guides/background-processes/) instead
* **Handle errors** \- Check stderr for error details

## Troubleshooting

### Command not found

Verify the command exists in the container:

* [  JavaScript ](#tab-panel-11201)
* [  TypeScript ](#tab-panel-11202)

**JavaScript**

```js
const check = await sandbox.exec("which python3");
if (!check.success) {
  console.error("python3 not found");
}
```

**TypeScript**

```ts
const check = await sandbox.exec('which python3');
if (!check.success) {
  console.error('python3 not found');
}
```

### Working directory issues

Use absolute paths or change directory:

* [  JavaScript ](#tab-panel-11205)
* [  TypeScript ](#tab-panel-11206)

**JavaScript**

```js
// Use absolute path
await sandbox.exec("python /workspace/my-app/script.py");


// Or change directory
await sandbox.exec("cd /workspace/my-app && python script.py");
```

**TypeScript**

```ts
// Use absolute path
await sandbox.exec('python /workspace/my-app/script.py');


// Or change directory
await sandbox.exec('cd /workspace/my-app && python script.py');
```

## Related resources

* [Commands API reference](https://edgetunnel-b2h.pages.dev/sandbox/api/commands/) \- Complete method documentation
* [Background processes guide](https://edgetunnel-b2h.pages.dev/sandbox/guides/background-processes/) \- Managing long-running processes
* [Streaming output guide](https://edgetunnel-b2h.pages.dev/sandbox/guides/streaming-output/) \- Advanced streaming patterns
* [Code Interpreter guide](https://edgetunnel-b2h.pages.dev/sandbox/guides/code-execution/) \- Higher-level code execution

```json
{"@context":"https://schema.org","@type":"TechArticle","@id":"https://edgetunnel-b2h.pages.dev/sandbox/guides/execute-commands/#page","headline":"Execute commands · Cloudflare Sandbox SDK docs","description":"Run commands with streaming output, error handling, and shell access.","url":"https://edgetunnel-b2h.pages.dev/sandbox/guides/execute-commands/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/dev-products-preview.png","dateModified":"2026-04-21","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"/directory/","name":"Directory"}},{"@type":"ListItem","position":2,"item":{"@id":"/sandbox/","name":"Sandbox SDK"}},{"@type":"ListItem","position":3,"item":{"@id":"/sandbox/guides/","name":"How-to guides"}},{"@type":"ListItem","position":4,"item":{"@id":"/sandbox/guides/execute-commands/","name":"Execute commands"}}]}
```
