miniflare icon indicating copy to clipboard operation
miniflare copied to clipboard

TypeError: Cannot read properties of undefined (reading 'split')

Open VoXaN24 opened this issue 2 years ago • 1 comments

My code work in a worker in cloudflare worker but not in loacl The Error : TypeError: Cannot read properties of undefined (reading 'split') at handleRequest (/home/valentin/test.js:2925:45) at /home/valentin/test.js:3065:27 at /usr/local/lib/node_modules/miniflare/node_modules/@miniflare/shared/src/event.ts:29:9 at EventTarget.<anonymous> (/usr/local/lib/node_modules/miniflare/node_modules/@miniflare/shared/src/event.ts:77:9) at EventTarget.[nodejs.internal.kHybridDispatch] (node:internal/event_target:643:20) at EventTarget.dispatchEvent (node:internal/event_target:585:26) at EventTarget.dispatchEvent (/usr/local/lib/node_modules/miniflare/node_modules/@miniflare/shared/src/event.ts:63:18) at EventTarget.dispatchEvent (/usr/local/lib/node_modules/miniflare/node_modules/@miniflare/shared/src/event.ts:87:26) at EventTarget.[kDispatchFetch] (/usr/local/lib/node_modules/miniflare/node_modules/@miniflare/core/src/standards/event.ts:356:13) at EventTarget.[kDispatchFetch] (/usr/local/lib/node_modules/miniflare/node_modules/@miniflare/core/src/index.ts:1067:31) GET / 500 Internal Server Error (66.07ms) NodeJS 16 Ubuntu 20.04

VoXaN24 avatar Jun 01 '22 17:06 VoXaN24

Hey! 👋 Are you able to share your code or a minimal reproduction? It looks like this error is happening in your handleRequest function.

mrbbot avatar Jun 09 '22 10:06 mrbbot

Facing same issue with nuxt 3

oleghalin avatar Mar 28 '23 18:03 oleghalin

I found out that process.versions.node is undefined and there are a lot of packages in my dependencies that rely on that it's a string.

For example:

const [maj, min] = process.versions.node.split('.').slice(0, 2).map(n => Number.parseInt(n, 10));

Related: https://github.com/nuxt-modules/i18n/issues/1993

zsilbi avatar Apr 21 '23 10:04 zsilbi

This can happen when deploying Nuxt with an incompatible unstorage driver.

OhB00 avatar Sep 21 '23 10:09 OhB00

Facing same issue with nuxt 3

Can you use kv in nuxt now?

bbhxwl avatar Oct 15 '23 15:10 bbhxwl