A temporary note website built with Hoa framework, deployed on Cloudflare Workers.
- π Instant Use - Create notes instantly without registration or login
- πΎ Auto-save - Notes are automatically stored in the cloud
- π Shareable Links - Each note has a unique URL for easy sharing
- β‘ Edge Powered - Hosted on Cloudflare Workers for low-latency global access
- π¨ Minimal Design - Clean interface focused on content
- π Lightweight - Built with the Hoa framework for efficient, maintainable code
Live Demo:
- Hoa - Lightweight web framework
- @hoajs/router - Router middleware
- Cloudflare Workers - Edge computing platform
- Cloudflare KV - Key-value storage
- Node.js >= 20
- Cloudflare account
npm install- Rename the configuration template:
mv wrangler.example.jsonc wrangler.jsonc- Edit
wrangler.jsoncand fill in your configuration:
{
"account_id": "your-account-id", // Change to your Cloudflare Account ID
"name": "tempnote",
"main": "tempnote.js",
"compatibility_date": "2025-09-30",
"no_bundle": false,
"minify": true,
"rules": [
{
"type": "Text",
"globs": ["**/*.html"]
}
],
"routes": [
{
"pattern": "your-domain.com/*", // Change to your domain
"zone_name": "your-domain.com" // Change to your domain
}
],
"kv_namespaces": [
{
"binding": "KV",
"id": "your-kv-namespace-id" // Change to your KV Namespace ID
}
]
}npm run devnpm run deployMIT