Metallic developer platform
Quick start
Spin up your first virtual computer in a few lines of code.5 min
import { Computer } from '@metallichq/sdk';
// Create a new computer
const computer = await Computer.create()
// Write a file
await computer.fs.writeFile('hello.txt', 'Hello, world!')
// Run a terminal command
await computer.terminal.run("ls -l")