Skip to content

Commit 111f702

Browse files
authored
Cloudflare Roadmap - Update Cloudflare Hono & Itty Router (kamranahmedse#8211)
1 parent 3dd115d commit 111f702

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1-
# Hono
1+
# Hono
2+
3+
Hono is a small, simple and ultrafast web framework built on web standards. It works on any JavaScript runtime: Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, Netlify, AWS Lambda, Lambda@Edge, and Node.js. Hono is more known for supporting a lot more than the basics.
4+
5+
## Use-cases
6+
Hono is a simple web application framework similar to the well known javascript framework Express, without a frontend. But it runs on CDN Edges and allows you to construct larger applications when combined with middleware.
7+
8+
Visit the following resources to learn more:
9+
- [@official@Official Documentation](https://hono.dev/docs/)
10+
- [@article@Hono.js: A Small Framework with Big Potential](https://medium.com/@appvintechnologies/hono-js-a-small-framework-with-big-potential-15a093fc5c07)
11+
- [@article@Quick Start with Hono: Simple Setup Guide](https://dev.to/koshirok096/quick-start-with-hono-simple-setup-guide-bite-sized-article-lhe)
12+
- [@opensource@Hono JS Examples](https://github.com/honojs/examples)
13+
- [@video@Learn with me](https://www.youtube.com/watch?v=gY-TK33G6kQ)
Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
# Itty Router
1+
# Itty Router
2+
3+
Itty Router is a lightweight router with the motto "less is more" that supports Cloudflare workers and pages. While other libraries may suffer from feature creep/bloat to please a wider audience, Itty Router painfully consider every single byte added to itty. Our router options range from ~450 bytes to ~970 bytes for a batteries-included version with built-in defaults, error handling, formatting, etc. On top of that, the following concepts aim to keep YOUR code tiny (and readable) as well.
4+
5+
## Simple Projects ideas
6+
Itty Router is a lightweight router system that supports typescript. You can create easy and good routers for Cloudflare workers or pages.
7+
With a simple project like a URL shortener, you can use Itty Router and Cloudflare KV.
8+
9+
Other project ideas can be found:
10+
- Webhook Relay
11+
- Transform webhook data or API data towards another API so you can transform the data as you like.
12+
- Micro URL Monitoring
13+
- Monitor any URL and give back responses on the specific endpoint.
14+
- Single-Use Download Links (Watch out for costs from Cloudflare!)
15+
- Generate links that expire after one download, ideal for file sharing.
16+
17+
Visit the following resources to learn more:
18+
- [@official@Official Documentation](https://itty.dev/itty-router/)
19+

0 commit comments

Comments
 (0)