Error Cannot read properties of undefined (reading 'get')
Hello,
I'm new to Cloudflare and Durable Objects. I have written my first test app that attempts to synchronize a TinyBase store into a durable object. I'm receiving two errors for each request:
1) Cannot read properties of undefined (reading 'get')
2) GET https://server.keith-m-bertram.workers.dev/projectStore-fe3ae3e6-1d2a-4056-8df4-62e87a312b32
My wrangler.toml looks like this:
#:schema node_modules/wrangler/config-schema.json
name = "StorezDurableObject"
main = "src/index.ts"
compatibility_date = "2024-10-11"
route = { pattern = "StorezDurableObject.tinybase.cloud", custom_domain = true }
[[durable_objects.bindings]]
name = "StorezDurableObjects"
class_name = "StorezDurableObject"
[[migrations]]
tag = "v1"
new_classes = ["StorezDurableObject"]
My src/index.ts file looks like this:
// TOP OF src/Index.ts
import { createMergeableStore } from 'tinybase';
import { createDurableObjectStoragePersister } from 'tinybase/persisters/persister-durable-object-storage';
import { getWsServerDurableObjectFetch, WsServerDurableObject } from 'tinybase/synchronizers/synchronizer-ws-server-durable-object';
export class StorezDurableObject extends WsServerDurableObject {
createPersister() {
return createDurableObjectStoragePersister(createMergeableStore(), this.ctx.storage);
}
}
export default {
fetch: getWsServerDurableObjectFetch('StorezDurableObjects'),
};
// BOTTOM of src/index.ts
I'm sure this is a simple issue but I can't quite put a finger on the issue. Any help would be appreciated.
Thanks,
Keith
1 Reply
Nevermind. I figured it out. My wrangler.jsonc file had an incorrect entry. in the bindings section.