RSSAmplifier

Blog

Script Language Blog

Updates, tutorials, and insights about Script programming language

docs.script-lang.orgRSS feed ↗5 posts

Latest posts

Introducing Script: JavaScript That Runs Like Rust

After years of development, Script is here. A language that compiles JavaScript and TypeScript to native machine code with Rust-inspired memory safety and zero-overhead abstractions.

Script v0.4: From VM to Native - The Self-Hosting Journey Begins

Script enters Phase 4 with the self-hosting compiler journey. Learn what self-hosting means, why it matters, and how Script is becoming self-compiling.

Building a Production-Ready Standard Library: Lessons from Implementing 10 Modules in One Week

Lessons learned from implementing 10 standard library modules in Script including path, math, date, and fs. Patterns, design decisions, and best practices.

Async/Await in Script: How We Built a Modern Async Runtime on Top of Tokio

Deep dive into Script's async/await implementation using Tokio. Learn about Promises, the await opcode, and bridging Rust's async with Script's VM.

ES Modules in Script: File-Based Resolution, Caching, and Cross-Module Calls

Learn how Script implements ES module support with import/export statements, file-based resolution, SHA256 caching, and cross-module function calls.