How do I get access to persisted Durable Objects?

Hi,

I'm implemented a worker with durable objects using the following code from TinyBase. This code appears to be fairly standard when creating durable objects from TinyBase.

/// Top of Code
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 ProjectHoundDurableObject extends WsServerDurableObject {
createPersister() {
return createDurableObjectStoragePersister(createMergeableStore(), this.ctx.storage);
}
}

export default {
fetch: getWsServerDurableObjectFetch('ProjectHoundDurableObjects'),
};

/// End of code.

As you can see, the storeage is specified as " this.ctx.storage". My question is where it is possible to download the persisted objects from Cloudflare? I cannot find any button that will allow me to download the objects.

Thanks in advance,

Keith
Was this page helpful?