@kuratchi/wrangler
v0.0.2
Published
Legacy CLI and Wrangler-native build pipeline for KuratchiJS apps. Prefer @kuratchi/vite for new projects.
Downloads
131
Readme
@kuratchi/wrangler
Legacy CLI and Wrangler-native build pipeline for KuratchiJS apps.
New projects should use
@kuratchi/vite, which is the default KuratchiJS build system. This package exists for existing apps that use the originalkuratchi build/kuratchi watchCLI flow and for projects that prefer a Wrangler-only toolchain without Vite.
What's here
- The
kuratchiCLI bin (build,watch,dev,create) - The legacy generated-worker template used by the CLI to emit
.kuratchi/worker.ts
Everything runtime-related — routing helpers, context, security, schema, compiler, navigation — lives in @kuratchi/js.
Install
npm install -D @kuratchi/wranglerWire the CLI into your package.json:
{
"scripts": {
"dev": "kuratchi dev",
"build": "kuratchi build"
}
}Your wrangler.jsonc should keep pointing at .kuratchi/worker.ts, which the CLI generates.
