You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sandbox layer is awesome. I want it to be even more awesome, by supporting 'smolvm' microvms from smolmachines^1, e.g.:
import{localProcessSandbox}from'@tanstack/ai-sandbox-local-process'+import{ smolvmSandbox }from'@tanstack/ai-sandbox-smolvm'import{dockerSandbox}from'@tanstack/ai-sandbox-docker'import{daytonaSandbox}from'@tanstack/ai-sandbox-daytona'import{vercelSandbox}from'@tanstack/ai-sandbox-vercel'constdev=localProcessSandbox()// your machine, fast dev loop+constsmolvm=smolvmSandbox({smolfile: 'myNode24Smolvm'})// your machine, secure dev loopconstisolated=dockerSandbox({image: 'node:22'})// a real container boundaryconstcloud=daytonaSandbox()// managed cloud sandboxconstmicrovm=vercelSandbox({runtime: 'node24'})// managed microVM
IMHO smolvms represent a sweet spot for local dev: nearly as fast as local process (way faster given it's safe to run agents in yolo mode), with only advantages over docker (faster cold boot times, reduced overhead, elastic memory usage, better security w/ kernel-level isolation).
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
The sandbox layer is awesome. I want it to be even more awesome, by supporting 'smolvm' microvms from smolmachines^1, e.g.:
IMHO smolvms represent a sweet spot for local dev: nearly as fast as local process (way faster given it's safe to run agents in yolo mode), with only advantages over docker (faster cold boot times, reduced overhead, elastic memory usage, better security w/ kernel-level isolation).
Thanks for considering it.
(I could imagine trying to make time to put up a PR myself but in any case creating the discussion is step 1.)
All reactions