Best of SvelteOctober 2025

  1. 1
    Article
    Avatar of svelteSvelte Blog·29w

    What’s new in Svelte: October 2025

    Svelte's October 2025 update introduces improved remote functions with batching capabilities and lazy discovery, experimental async SSR support, and the ability to create projects from Svelte playground URLs. The release includes enhanced form handling with schema support, performance optimizations, and various bug fixes across Svelte, SvelteKit, and the CLI tool.

  2. 2
    Article
    Avatar of css_tricksCSS-Tricks·26w

    Building a Honeypot Field That Works

    Honeypot fields remain effective for preventing spam form submissions in 2025 without requiring reCAPTCHA. The key is avoiding common detection patterns: use regular text inputs instead of hidden fields, hide them with external CSS rather than inline styles, and use legitimate-sounding names like 'occupation' instead of 'honeypot'. Additional protection includes detecting user interactions through mouse movements, keyboard events, and form completion time using JavaScript. The article provides ready-to-use components for Svelte and Astro, plus vanilla JavaScript utilities for implementing these spam prevention techniques.