Initialize the sandbox by creating a new Deno Sandbox instance.
This method authenticates with Deno Deploy and provisions a new microVM
sandbox. After initialization, the id property will reflect the
actual Deno sandbox ID.
initialize(): Promise<void>const sandbox = new DenoSandbox();
await sandbox.initialize();
console.log(`Sandbox ID: ${sandbox.id}`);