Skip to main content

Tech Stack & Compatibility

Understanding your runtime environment is critical to building scalable web applications. This guide details the core technologies, compilation mechanics, and development environments that power the Bloxsnap ecosystem.


💻 In-browser IDE

Bloxsnap's rendering engine and component architecture are powered natively by Svelte 5.

Advantages for Developers

The in-browser IDE was designed to streamline and simplify the work of front-end developers.

Vanilla Code Compatibility

Because Svelte compiles down to ultra-lean, framework-less primitives, you don't have to learn an additional proprietary language to extend your components. You can continue to write standard, vanilla HTML, CSS, and JavaScript exactly as you normally would.

Native Front-End Templating

Svelte 5 handles layout templating directly on the client side, allowing you to generate rich, dynamic, and repeatable Content Types while completely avoiding the server runtime errors and nasty 500 errors typical of back-end templating engines.

Tree-Shaking & Performance

Component code is compiled nearly instantly in the browser environment, keeping deployment footprints exceptionally small and ensuring pristine client-side responsiveness.

Work on the browser, in the browser

Because component code is compiled directly in the browser environment, there are zero complex local environments, dependencies, or toolchains to configure. Everything you need to develop is already right there in your tab.

Real-Time Error Diagnostics

Debug layouts as fast as you think. Since compilation and execution happen with every keystroke inside the in-browser IDE, you'll see bugs and issues in real-time.


☁️ Cloud Environments & Hosting

Bloxsnap eliminates the complexity of managing server infrastructure, provisioning SSL certificates, or configuring web servers. Every project is backed by a highly available, globally distributed cloud architecture designed for maximum performance and security.

Infrastructure Advantages

Global Edge Network

When you publish your changes, your website assets are instantly optimized, compressed via GZIP protocols, and committed to a secure cloud storage layer. A high-performance global distribution network (Pull CDN) automatically caches and propagates these files across countless Points of Presence (PoPs) and edge servers worldwide. This minimizes time-to-first-byte (TTFB) by handling requests immediately at the closest geographic network edge node.

Flexible Domain Routing & CNAME Flattening

Traditional DNS specifications strictly prohibit mapping a standard CNAME record directly to a root apex domain (@). It is only permitted on subdomains (like www).

DNS Specifications

❌ domain.ltd → CNAME your-asset-path.net (Not allowed by DNS rules)

✔️ www.domain.ltd → CNAME your-asset-path.net (Allowed by DNS rules)

To accommodate both modern and legacy configurations, Bloxsnap provides dual routing tracks depending on your DNS provider's capabilities:

  • Case 1: Your DNS Provider Supports CNAME Flattening

If you use a modern DNS manager that supports CNAME flattening (sometimes called ALIAS or ANAME records), your setup is completely seamless. The provider allows you to map a CNAME directly to the root apex (@), internally resolves our edge IPs behind the scenes, and serves them up instantly as standard A records.

  • Apex Configuration: @ -> CNAME -> Bloxsnap Target Hostname

  • Subdomain Configuration: www -> CNAME -> Bloxsnap Target Hostname

  • Case 2: Your DNS Provider Does NOT Support CNAME Flattening

If your provider does not support flattening workarounds, you cannot place a CNAME on your root apex. To prevent your non-www traffic from dropping, you must use our dedicated redirect (RDR) framework:

  • Apex Configuration: Point your root apex (@) to a standard A record using Bloxsnap's dedicated redirect server IP. This server safely intercepts traffic hitting domain.ltd and cleanly forwards it to your subdomain.

  • Subdomain Configuration:* Point your www subdomain record to a CNAME referencing your Bloxsnap target hostname.

Hassle-Free SSL/TLS

Security compliance requires zero manual maintenance or third-party renewal configurations. Every single custom domain deployment includes fully automated SSL/TLS encryption and certificate generation straight out of the box.