I’d start in the contributing guide: <https://github.com/cloudflare/workers-sdk/blob/main/CONTRIBUTI
I’d start in the contributing guide: https://github.com/cloudflare/workers-sdk/blob/main/CONTRIBUTING.md

wrangler types add the generic "body" type for a Queue?npx wranger secret put foo. It opens up the cloudflare consent screen, but then when I click "allow", it hangs. Any thoughts?--test-scheduled working for folks in the latest version of Wrangler?--x-dev-env=false fix it?pnpm run build --filter create-cloudflare then running pnpm create cloudflare hello-world --type hello-world --ts --git doesn't appear to run my local code. What am I doing wrong?unstable_dev?logLevelpnpm dev uses the local database (which is fine most of the time). There is no pnpm dev --remote like there was using wrangler dev. Is there some way to make it work? Environment variable maybe?
[wrangler:inf] GET /api/me 500 Internal Server Error (43ms) which is entirely useless for any purpose whatsoever.
npx wrangler pages dev?{"status":500,"error":"Cannot read properties of undefined (reading 'join')"}. Why would the client get the error but wrangler doesn't?--test-scheduled to forward fetch triggers. npm create hono@latest my-app reponpm create cloudflare@latest -- my-first-worker then installed honojs to it and now the scheduled worker is workinggetPlatformProxy()?init —from-dashexport CLOUDFLARE_API_TOKEN="API token generated from the Edit Workers (or equivalent) template"Queuenpx wranger secret put foo--test-scheduled--test-scheduled--x-dev-env=falsepnpm run build --filter create-cloudflarepnpm create cloudflare hello-world --type hello-world --ts --gitunstable_devlogLevelpnpm devpnpm dev --remote[wrangler:inf] GET /api/me 500 Internal Server Error (43ms)addEventListener('error', (e) => {
console.log(e.error);
});npx wrangler pages dev{"status":500,"error":"Cannot read properties of undefined (reading 'join')"}npm create hono@latest my-appnpm create cloudflare@latest -- my-first-workergetPlatformProxy()export async function getDB(c: Bindings) {
if (c.ENV == "development") {
return new Kysely<Database>({
dialect: new MysqlDialect({
pool: createConnection ({
host: c.DATABASE_HOST,
database: c.DATABASE_DATABASE,
user: c.DATABASE_USERNAME,
password: c.DATABASE_PASSWORD,
})
})
})
} else {
return new Kysely<Database>({
dialect: new PlanetScaleDialect({
username: c.DATABASE_USERNAME,
password: c.DATABASE_PASSWORD,
host: c.DATABASE_HOST
})
})
}
}/home/naourass/web_exp/phoenix-astro-next/node_modules/undici/index.js:112
Error.captureStackTrace(err, this)
^
TypeError: fetch failed
at Object.fetch (/home/naourass/web_exp/phoenix-astro-next/node_modules/undici/index.js:112:15)
at async fetch3 (/home/naourass/web_exp/phoenix-astro-next/node_modules/miniflare/src/http/fetch.ts:90:19)
at async ProxyClientBridge.dispatchFetch (/home/naourass/web_exp/phoenix-astro-next/node_modules/miniflare/src/index.ts:1647:20)
at async ProxyStubHandler.#parseAsyncResponse (/home/naourass/web_exp/phoenix-astro-next/node_modules/miniflare/src/plugins/core/proxy/client.ts:339:15)
at async SQLiteD1Session.batch (/home/naourass/web_exp/phoenix-astro-next/node_modules/src/d1/session.ts:82:24) {
cause: SocketError: other side closed
at Socket.onSocketEnd (/home/naourass/web_exp/phoenix-astro-next/node_modules/undici/lib/client.js:1118:22)
at Socket.emit (node:events:530:35)
at Socket.emit (node:domain:489:12)
at endReadableNT (node:internal/streams/readable:1698:12)
at process.processTicksAndRejections (node:internal/process/task_queues:90:21) {
code: 'UND_ERR_SOCKET',
socket: {
localAddress: '127.0.0.1',
localPort: 39446,
remoteAddress: undefined,
remotePort: undefined,
remoteFamily: undefined,
timeout: undefined,
bytesWritten: 1148,
bytesRead: 3678304
}
}
}
Node.js v22.11.0