un-inception/clients/javascript/async/examples/hello_world.js
russell@unturf.com 331cba42aa feat: Complete 6 additional SDK implementations with fixes and examples
Go Async SDK (clients/go/async/):
- Fixed case-sensitive language detection bug (.R for R language)
- Created go.mod for module management
- Added comprehensive test suite
- Created 3 examples with expected output comments
- Added README with full documentation

Java Sync SDK (clients/java/sync/):
- RENAMED: Unsandbox.java -> Un.java (matches naming convention)
- Updated class name from Unsandbox to Un
- Created pom.xml for Maven build
- Added 6 examples (simple + SDK client versions)
- Created test suite with JUnit 5
- Added README with API documentation

JavaScript Async SDK (clients/javascript/async/):
- Fixed unused import
- Created package.json with ES module support
- Added 5 examples covering all async patterns
- Created 71 tests (all passing)
- Added comprehensive README

PHP Sync SDK (clients/php/sync/):
- RENAMED: Unsandbox.php -> un.php (matches naming convention)
- Created composer.json with PSR-4 autoloading
- Created phpunit.xml for testing
- Added 4 examples with expected output comments
- Created 54 tests across 4 test files
- Added README with full documentation

Ruby Sync SDK (clients/ruby/sync/):
- Created Gemfile and un.gemspec
- Created Rakefile with test task
- Updated examples to actually use the SDK
- Added 4 examples (hello_world, async_job, language_detection, snapshots)
- Created comprehensive test suite with 30+ tests
- Added README with documentation

Rust Sync SDK (clients/rust/sync/):
- Updated Cargo.toml with example declarations
- Created 4 examples (hello_world, fibonacci, multi_language, async_polling)
- Added comprehensive README with API reference
- All dependencies verified correct

All SDKs verified:
- HMAC-SHA256 authentication implemented
- 4-tier credential system (args > env > ~/.unsandbox > ./accounts.csv)
- Expected output comments for pipeline validation
- Proper error handling
- Language detection support
2026-01-15 17:32:24 -05:00

52 lines
1.5 KiB
JavaScript

#!/usr/bin/env node
/**
* Hello World example for unsandbox JavaScript SDK - Asynchronous Version
*
* This example demonstrates basic async execution with the unsandbox SDK.
* Shows how to use async/await with the SDK for simple code execution.
*
* To run:
* export UNSANDBOX_PUBLIC_KEY="your-public-key"
* export UNSANDBOX_SECRET_KEY="your-secret-key"
* node hello_world.js
*
* Expected output:
* Executing code asynchronously...
* Result status: completed
* Output: Hello from async unsandbox!
*/
import { executeCode, CredentialsError } from '../src/un_async.js';
async function main() {
// The code to execute
const code = 'print("Hello from async unsandbox!")';
try {
console.log('Executing code asynchronously...');
const result = await executeCode('python', code);
if (result.status === 'completed') {
console.log(`Result status: ${result.status}`);
console.log(`Output: ${(result.stdout || '').trim()}`);
if (result.stderr) {
console.log(`Errors: ${result.stderr}`);
}
return 0;
} else {
console.log(`Execution failed with status: ${result.status}`);
console.log(`Error: ${result.error || 'Unknown error'}`);
return 1;
}
} catch (e) {
if (e instanceof CredentialsError) {
console.log(`Credentials error: ${e.message}`);
} else {
console.log(`Error: ${e.message}`);
console.error(e);
}
return 1;
}
}
main().then(process.exit);