> There is Brayden's elegant Alarm class but it's not documented, and by default requires your DO ex
There is Brayden's elegant Alarm class but it's not documented, and by default requires your DO extend the Actor base class unless you duplicate what that base class does manually.You actually don't need the Actor base class. I am a fan of toolkits personally, so we tried
actors package to make it available on its own, only depending on the ctx.storage of SQLite Durable Objects.See example in https://github.com/cloudflare/actors/blob/e910e86ac1567fe58e389d1938afbdf1e53750ff/examples/durable-objects/src/index.ts#L21
Same goes for the SQL Schema migrations, you can use them without the Actor base class, and retry utilities too.

