|
|
|
|
|
by rubenfiszel
691 days ago
|
|
At windmill.dev, when users deploy their code, we use Bun build (which is similar to esbuild) to bundle their scripts and all their dependencies into a single js file to load which improve cold start and memory usage. We store the bundle on s3 because of the size of the bundles. If we could bundle everything to native that would completely change the game since as good as bun's cold start is, you can't beat running straight native with a small binary. |
|