Tuesday, September 01, 2026

zod (.js), faster

 Zod 4.5

Issue #800: How to fit Minesweeper into 247 bytes — JavaScript Weekly

Zod 4.5: Faster Parsing, 9x Less Memory Per Schema — A big performance release for the popular TypeScript-first schema validation library. In a deep dive, Colin explains how method memoization helped cut a bare z.string() from using 7.5KB of heap to just 784 bytes.

Colin McDonnell



Spatial Intelligence: Atlas, World Model from World Labs

World Labs has introduced Atlas, an omni world model designed for spatial intelligence that natively processes text, images, video, and 3D data. Built as a multimodal autoregressive diffusion transformer, Atlas grounds inputs in a shared 3D spatial context to generate, reconstruct, and simulate environments.

Core Capabilities

  • Camera-Controlled Generation: Generates up to 1-minute videos at 1440p resolution from reference images with precise camera movement and 3D consistency.

  • Spatial Reconstruction: Reconstructs scenes from sparse input images (from 1 to dozens), outputting novel views, point clouds, and 3D Gaussian splats while outperforming specialized 3D reconstruction models.

  • Space-Time Simulation: Enables video reframing ("bullet time" effects) from simple camera setups and supports Real-to-Sim workflows for robotics training and evaluation.

  • Image Generation: Produces high-fidelity images and 360-degree panoramas from text prompts with detailed style and text rendering capabilities.

Technical Architecture & Performance

  • Model Type: Combines autoregressive sequence modeling with rectified flow diffusion, leveraging transformer-based scaling for continuous compute improvements.

  • Performance: Outperforms specialized baselines in human evaluation for camera control and achieves lower relative error across standard 3D reconstruction benchmarks (e.g., DTU, ETH3D, ScanNet).

Atlas is not open source. It is a proprietary, cloud-accessible model being integrated into World Labs' platform products like Marble.

Currently, it functions as a commercial preview/announcement:

  • Access: It is not open to the general public yet. World Labs is accepting requests for early access for select partners.

  • Deployment: Once rolled out, it will power World Labs' cloud-based creation platform (Marble) and be offered via enterprise cloud APIs rather than downloadable local model weights.




similar: 

Physical AI with World Foundation Models | NVIDIA Cosmos


New iOS26 Spatial Scenes - Turn Any Photo into a 3D Time Portal! - YouTube


Capture, view, and share spatial photos and videos on Apple Vision Pro - Apple Support


Amazon.com: OPIC Smartphone 3D Stereoscopic Lens 3D Camera Stereo Photos Device for Phone, Tablet, Laptop – OPIC Spatial Clips on to Turn Your Device Into a 3D Camera for Photos, Videos and VR-Ready Memories

JS/TS => Rust

"Everything that can be re-written in Rust will be re-written in Rust" :)

Rust Is Eating JavaScript | Lee Robinson

JavaScript build tools historically written in JavaScript or TypeScript (like Babel, Webpack, Prettier, and ESLint) hit peak optimization. To drastically improve build times, developer tools shifted toward systems programming languages—primarily Rust.

Rust provides native-level performance, strict memory safety at compile time without garbage collection, and strong WebAssembly (WASM) interoperability. While initially met with skepticism due to its steep learning curve, Rust has effectively conquered the JavaScript tooling ecosystem:

  • Toolchain Dominance: Major bundlers, formatters, linters, and compilers in popular frameworks (Next.js, Vite, Deno, Tailwind CSS) now run on Rust.

  • AI & Agent Synergy: Rust's strict compiler makes it exceptionally well-suited for AI coding agents, as code that compiles is far more likely to be runtime-correct.

  • Beyond JavaScript: This paradigm shift has expanded into other language ecosystems, such as Python (uv, Ruff).

1. Compilers, Transpilers & All-in-One Suites

  • SWC: An extensible Rust-based platform for compilation, minification, and bundling. It serves as the underlying engine for Next.js, Deno, and Parcel.

  • Oxc (Oxlint / Oxfmt): A suite of high-performance tools written in Rust including a parser, linter (Oxlint), and formatter (Oxfmt) designed as ultra-fast replacements for ESLint and Prettier.

  • Biome (formerly Rome): An all-in-one toolchain for JS/TS providing linting (with type-aware capabilities), formatting, and parsing.

2. Bundlers & Build Tools

  • Turbopack: A Rust-based bundler developed by Vercel powering the Next.js Compiler.

  • Rolldown: A Rust bundler created under the VoidZero umbrella to replace Rollup and esbuild in Vite.

  • Rspack: A high-performance Rust bundler designed as a drop-in replacement with full Webpack API compatibility.

  • esbuild: A fast JS bundler and minifier written in Go that originally sparked the movement toward high-performance developer tooling.

3. Styling & CSS Tools

  • Lightning CSS: A fast CSS parser, transformer, bundler, and minifier written in Rust.

  • Tailwind CSS v4 (Oxide Engine): Uses Rust and Lightning CSS to accelerate full and incremental CSS builds.

4. Runtimes, Package Managers & Infrastructure

  • Deno: A modern runtime for JavaScript/TypeScript built with Rust (using Rust for its internal linter, formatter, and docs generator).

  • Bun: A JavaScript runtime and toolkit that shifted its core implementation to Rust.

  • Pacquet / pnpm: An experimental Rust-based install engine integrated into pnpm to speed up package fetch and link phases.

  • napi-rs: A framework for building pre-compiled Node.js native add-ons using Rust without needing node-gyp.

5. Cross-Ecosystem Tools

  • uv: An extremely fast Python package manager written in Rust, replacing pip.

  • Ruff: A high-speed Python linter and code formatter written in Rust, replacing Flake8 and Black.