npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tanstack/ai-isolate-cloudflare

v0.1.7

Published

Cloudflare Workers driver for TanStack AI Code Mode - execute code on the edge

Readme

@tanstack/ai-isolate-cloudflare

Cloudflare Workers driver for TanStack AI Code Mode.

This package runs generated JavaScript in a Worker and keeps external_* tool execution on your host process through a request/response loop.

Installation

pnpm add @tanstack/ai-isolate-cloudflare

Environment Guidance (Conservative)

  • Local development: supported with the package's Miniflare dev server (pnpm dev:worker)
  • Remote dev: supported with wrangler dev --remote
  • Production: evaluate carefully before rollout; dynamic code execution with unsafe_eval has platform/security constraints and is often treated as an advanced or enterprise setup

If you need a fully local setup without Cloudflare constraints, prefer @tanstack/ai-isolate-node or @tanstack/ai-isolate-quickjs.

Quick Start

import { chat, toolDefinition } from '@tanstack/ai'
import { createCodeMode } from '@tanstack/ai-code-mode'
import { createCloudflareIsolateDriver } from '@tanstack/ai-isolate-cloudflare'
import { z } from 'zod'

const fetchWeather = toolDefinition({
  name: 'fetchWeather',
  description: 'Get weather for a city',
  inputSchema: z.object({ location: z.string() }),
  outputSchema: z.object({
    temperature: z.number(),
    condition: z.string(),
  }),
}).server(async ({ location }) => {
  return { temperature: 72, condition: `sunny in ${location}` }
})

const driver = createCloudflareIsolateDriver({
  workerUrl: 'http://localhost:8787', // local dev server URL
  authorization: 'Bearer your-secret-token', // optional
})

const { tool, systemPrompt } = createCodeMode({
  driver,
  tools: [fetchWeather],
  timeout: 30_000,
})

const result = await chat({
  adapter: yourTextAdapter,
  model: 'gpt-4o-mini',
  systemPrompts: ['You are a helpful assistant.', systemPrompt],
  tools: [tool],
  messages: [{ role: 'user', content: 'Compare weather in Tokyo and Paris' }],
})

Worker Setup

Option 1: Local Miniflare server

From this package directory:

pnpm dev:worker

This starts a local Worker endpoint (default http://localhost:8787) with UNSAFE_EVAL configured for local testing.

Option 2: Wrangler remote dev

wrangler dev --remote

This runs through Cloudflare's network and can be useful when validating behavior against the hosted runtime.

API

createCloudflareIsolateDriver(config)

Creates a driver that delegates code execution to a Worker endpoint.

  • workerUrl (required): URL of the Worker endpoint
  • authorization (optional): value sent as Authorization header
  • timeout (optional): request timeout in ms (default: 30000)
  • maxToolRounds (optional): max Worker <-> host tool callback rounds (default: 10)

Worker Entry Export

The package also exports a Worker entrypoint:

import worker from '@tanstack/ai-isolate-cloudflare/worker'

Use this when you want to bundle or compose the provided worker logic in your own Worker project.

Security Notes

  • Protect the worker endpoint if it is reachable outside trusted infrastructure.
  • Validate auth headers server-side if you set authorization in the driver.
  • Add rate limiting and request monitoring for untrusted traffic.
  • Treat generated code execution as a high-risk surface; keep strict input and network boundaries.

Architecture

Host Driver                   Cloudflare Worker
-----------                   ------------------
1) send code + tool schemas -> execute until tool call or completion
2) receive tool requests    <- need_tools payload
3) execute tools locally    -> send toolResults
4) receive final result     <- success/error payload