
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@jahands/cf-actors
Advanced tools
TESTING FORK: An easier way to build with Cloudflare Durable Objects
This project is in active development.
We are building a full-featured framework that makes developing Cloudflare Durable Objects easier by introducing new patterns and out of the box functionality that help developers.
MyActor.get('id') interfaceAnd many more features, check out the Examples for more information.
npm i @cloudflare/actors
Notice the code class name in your Typescript implementation must match the binding name, class_name and new_sqlite_classes value in the configuration. Verify all of the values match.
{
"migrations": [
{
"new_sqlite_classes": ["MyActor"],
"tag": "v1"
}
],
"durable_objects": {
"bindings": [
{
"class_name": "MyActor",
"name": "MyActor"
}
]
}
}
import { Actor, handler } from "@cloudflare/actors";
export class MyActor extends Actor<Env> {
async onRequest(request: Request): Promise<Response> {
return new Response("Hello, World!");
}
}
export default handler(MyActor);
npm run deploy
Cold Start:
Warm Start:
For the warm start instance, onInit would have already been called earlier before the alarm trigger.
See FAQ for more answers to common questions.
We welcome contributions! Please refer to our Contributing Guidelines for more information.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
TESTING FORK: An easier way to build with Cloudflare Durable Objects
We found that @jahands/cf-actors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.