@hanzo/runtime
v0.0.0-dev
Published
TypeScript SDK for Hanzo Runtime
Downloads
3
Keywords
Readme
Daytona SDK for TypeScript
A TypeScript SDK for interacting with the Daytona API, providing a simple interface for Daytona Sandbox management, Git operations, file system operations, and language server protocol support.
Installation
You can install the package using npm:
npm install @daytonaio/sdkOr using yarn:
yarn add @daytonaio/sdkQuick Start
Here's a simple example of using the SDK:
import { Daytona } from '@daytonaio/sdk'
// Initialize using environment variables
const daytona = new Daytona()
// Create a sandbox
const sandbox = await daytona.create()
// Run code in the sandbox
const response = await sandbox.process.codeRun('console.log("Hello World!")')
console.log(response.result)
// Clean up when done
await daytona.delete(sandbox)Configuration
The SDK can be configured using environment variables or by passing a configuration object:
import { Daytona } from '@daytonaio/sdk'
// Initialize with configuration
const daytona = new Daytona({
apiKey: 'your-api-key',
apiUrl: 'your-api-url',
target: 'us',
})Or using environment variables:
DAYTONA_API_KEY: Your Daytona API keyDAYTONA_API_URL: The Daytona API URLDAYTONA_TARGET: Your target environment
You can also customize sandbox creation:
const sandbox = await daytona.create({
language: 'typescript',
envVars: { NODE_ENV: 'development' },
autoStopInterval: 60, // Auto-stop after 1 hour of inactivity,
autoArchiveInterval: 60, // Auto-archive after a Sandbox has been stopped for 1 hour
autoDeleteInterval: 120, // Auto-delete after a Sandbox has been stopped for 2 hours
})Features
- Sandbox Management: Create, manage and remove sandboxes
- Git Operations: Clone repositories, manage branches, and more
- File System Operations: Upload, download, search and manipulate files
- Language Server Protocol: Interact with language servers for code intelligence
- Process Management: Execute code and commands in sandboxes
Examples
Execute Commands
// Execute a shell command
const response = await sandbox.process.executeCommand('echo "Hello, World!"')
console.log(response.result)
// Run TypeScript code
const response = await sandbox.process.codeRun(`
const x = 10
const y = 20
console.log(\`Sum: \${x + y}\`)
`)
console.log(response.result)File Operations
// Upload a file
await sandbox.fs.uploadFile(Buffer.from('Hello, World!'), 'path/to/file.txt')
// Download a file
const content = await sandbox.fs.downloadFile('path/to/file.txt')
// Search for files
const matches = await sandbox.fs.findFiles(root_dir, 'search_pattern')Git Operations
// Clone a repository
await sandbox.git.clone('https://github.com/example/repo', 'path/to/clone')
// List branches
const branches = await sandbox.git.branches('path/to/repo')
// Add files
await sandbox.git.add('path/to/repo', ['file1.txt', 'file2.txt'])Language Server Protocol
// Create and start a language server
const lsp = await sandbox.createLspServer('typescript', 'path/to/project')
await lsp.start()
// Notify the lsp for the file
await lsp.didOpen('path/to/file.ts')
// Get document symbols
const symbols = await lsp.documentSymbols('path/to/file.ts')
// Get completions
const completions = await lsp.completions('path/to/file.ts', {
line: 10,
character: 15,
})Contributing
Daytona is Open Source under the Apache License 2.0, and is the copyright of its contributors. If you would like to contribute to the software, read the Developer Certificate of Origin Version 1.1 (https://developercertificate.org/). Afterwards, navigate to the contributing guide to get started.
