Todo lo que aprendimos de alimentar el 20% de Internet—tuyo por defecto

Cloudflare es tu Nube de IA con cómputo, inferencia de IA y almacenamiento — lo que te permite desplegar aplicaciones en lugar de gestionar infraestructura.

Comienza a construir

La nube que funciona para desarrolladores, no al revés

Implementa funciones sin servidor, frontends, contenedores y bases de datos en 330+ ciudades con un solo comando.

Build AI agents on durable objects with code execution, inference, AI gateway all built-in

"Cloudflare provided everything from OAuth to out-of-the-box remote MCP support so we could quickly build, secure, and scale a fully operational setup."

Architecture inspired by

Atlassian

Región: Tierra

Nuestra red inteligente posiciona tus cargas de trabajo de manera óptima — cerca de los usuarios, cerca de los datos.

Ejecuta en todas partes

Ejecuta código en 330+ ciudades alrededor del mundo, en menos de 50 ms del 95% de la población mundial.

Ejecutar en cualquier lugar

Ejecuta código cerca del usuario, de la base de datos o cerca de tus APIs. Nuestra red inteligente programará tus solicitudes para optimizar la mejor latencia.

Ejecutar a gran escala

Ejecutado en la infraestructura de Cloudflare, soportando 449 Tbps de capacidad de red, atendiendo más de 81 millones de solicitudes HTTP por segundo.

Cloudflare impulsa
1 de cada 5 sitios en Internet

Confiable por los equipos que confías. Y miles más...

anthropic
canva
asana
atlassian
shopify
stripe
wix
block
intercom
doordash
coreweave
leonardo
anthropic
canva
asana
atlassian

Go from

in minutes

No DevOps. Inicios mínimos. Sin facturas inesperadas.

From first line to full scale

Deploy working code in seconds or start from hundreds of templates — all built to scale.

See templates
Player 1
Player 2
import { routePartykitRequest, Server } from "partyserver";
  
import type { OutgoingMessage, Position } from "../shared";
import type { Connection, ConnectionContext } from "partyserver";

// This is the state that we'll store on each connection
type ConnectionState = {
  position: Position;
};

export class Globe extends Server {
  onConnect(conn: Connection<ConnectionState>, ctx: ConnectionContext) {
    // Whenever a fresh connection is made, we'll
    // send the entire state to the new connection
    
    // First, let's set up the connection state
    conn.setState({ position: { x: 0, y: 0 } });
    
    // Send current state to new connection
    this.broadcast(JSON.stringify({
      type: "user-joined",
      id: conn.id,
      position: conn.state.position
    }));
  }

  onMessage(message: string, sender: Connection<ConnectionState>) {
    const data = JSON.parse(message) as OutgoingMessage;
    
    if (data.type === "position-update") {
      sender.setState({ position: data.position });
      
      // Broadcast position update to all other connections
      this.broadcast(JSON.stringify({
        type: "position-update",
        id: sender.id,
        position: data.position
      }), [sender.id]);
    }
  }

  onClose(connection: Connection<ConnectionState>) {
    this.broadcast(JSON.stringify({
      type: "user-left",
      id: connection.id
    }));
  }
}
~/workspace/multiplayer-app git:(main)
Deploy with one command
Let it spike. We got you.

Your application runs globally, handles millions of requests, and scales without you thinking about it.

Paga solo cuando tu código se ejecuta

(No para mantener los servidores calientes.)

Wall Clock vs. CPU Time

Never pay for idle time waiting for slow APIs, LLMs, or humans. Cloudflare charges only for compute, not wall time, even during long agent workflows or hibernating WebSockets.

1ms
LLM Call 2500ms
0.5ms
API Call 300ms
0.75ms
Paid
Free

Free

No credit card needed

See more
100,000

/ daily requests

1 million

/ KV daily reads

25

/ AI daily requests

10GB

/ R2 Storage

Paid

Starts at $5/month

See more
$0.30

/ million requests

$0.02

/ million CPU ms

Por qué los desarrolladores eligen Cloudflare

Todo lo necesario para construir aplicaciones eficientes.

Fighting infra with “cloud”

Shipping with
Cloudflare

Personalizado a tu estilo de trabajo

Siempre simple, rápido y confiable.

Fits into your existing workflows

Git, GitHub Actions, VS Code, and any framework. No proprietary tools or vendor lock-in.

Instant feedback loops

Our smart network positions your workloads optimally — close to users, close to data.

Observable by default

Built-in logs, metrics, and tracing. Understand your application's performance without setting up monitoring infrastructure.

Compatible with your stack

Use the languages and frameworks you know — JS, TS, Python, Rust, React, and more. Cloudflare works with your existing databases, APIs, and services.

import { Code } from "@/components/interactive/code-editor"
import { Icon } from "@/components/ui"
import { minDarkTheme } from "@/themes/min-dark"

export const IDE = () => {
  const [activeTab, setActiveTab] = useState(0)
  const [isHovering, setIsHovering] = useState(false)

  const tabs = [
    { icon: "typescript", name: "multiplayer.ts", language: "typescript" },
    { icon: "svelte", name: "profile.svelte", language: "svelte" },
    { icon: "python", name: "function.py", language: "python" }
  ]

  return (
    <div className="bg-background-100 mt-8 flex h-full w-full flex-col rounded-md border">
      <div className="flex">
        {tabs.map((tab, index) => (
          <button
            key={tab.name}
            className="flex items-center gap-1.5 px-3 py-2 transition-colors"
            onMouseEnter={() => {
              setIsHovering(true)
              setActiveTab(index)
            }}
          >
            <Icon icon={tab.icon} className="size-4" />
            {tab.name}
          </button>
        ))}
      </div>
      <div className="h-full w-full overflow-hidden">
        <SyntaxHighlighter
          language={activeTabData.language}
          style={minDarkTheme}
          showLineNumbers
        >
          {activeTabData.content}
        </SyntaxHighlighter>
      </div>
    </div>
  )
}

Construye sin límites

Únete a miles de desarrolladores que han eliminado la complejidad de la infraestructura y han desplegado a nivel mundial con Cloudflare. Empieza a construir gratis — no se requiere tarjeta de crédito.