Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Hono - Ultrafast web framework for Cloudflare W...
Search
Yusuke Wada
November 26, 2022
Programming
3
7.8k
Hono - Ultrafast web framework for Cloudflare Workers, Deno, Bun, and Node.js
Yusuke Wada 2022.11.26 JSConf JP
Yusuke Wada
November 26, 2022
Tweet
Share
More Decks by Yusuke Wada
See All by Yusuke Wada
Remix on Hono on Cloudflare Workers
yusukebe
1
270
僕がつくった48個のWebサービス達
yusukebe
20
17k
Honoの来た道とこれから
yusukebe
19
3.2k
JS RPCを理解する
yusukebe
5
680
Honoとhtmx
yusukebe
6
1.8k
Cloudflare Workersの環境を再現することについて
yusukebe
7
990
Hono v4
yusukebe
11
4.8k
Hono v3 and v4
yusukebe
4
3.8k
The power of Web-standards
yusukebe
4
1.7k
Other Decks in Programming
See All in Programming
Snowflake x dbtで作るセキュアでアジャイルなデータ基盤
tsoshiro
2
520
Tauriでネイティブアプリを作りたい
tsucchinoko
0
370
TypeScript Graph でコードレビューの心理的障壁を乗り越える
ysk8hori
2
1.1k
AI時代におけるSRE、 あるいはエンジニアの生存戦略
pyama86
6
1.1k
.NET のための通信フレームワーク MagicOnion 入門 / Introduction to MagicOnion
mayuki
1
1.3k
PHP でアセンブリ言語のように書く技術
memory1994
PRO
1
170
シールドクラスをはじめよう / Getting Started with Sealed Classes
mackey0225
4
640
macOS でできる リアルタイム動画像処理
biacco42
9
2.3k
GitHub Actionsのキャッシュと手を挙げることの大切さとそれに必要なこと
satoshi256kbyte
5
430
Less waste, more joy, and a lot more green: How Quarkus makes Java better
hollycummins
0
100
Content Security Policy入門 セキュリティ設定と 違反レポートのはじめ方 / Introduction to Content Security Policy Getting Started with Security Configuration and Violation Reporting
uskey512
1
520
Better Code Design in PHP
afilina
PRO
0
120
Featured
See All Featured
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
506
140k
We Have a Design System, Now What?
morganepeng
50
7.2k
Keith and Marios Guide to Fast Websites
keithpitt
409
22k
Become a Pro
speakerdeck
PRO
25
5k
Docker and Python
trallard
40
3.1k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.8k
Thoughts on Productivity
jonyablonski
67
4.3k
Building Applications with DynamoDB
mza
90
6.1k
A better future with KSS
kneath
238
17k
A Tale of Four Properties
chriscoyier
156
23k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
131
33k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
47
2.1k
Transcript
Yusuke Wada 2022.11.26 JSConf JP Hono Ultrafast web framework for
Cloud fl are Workers, Deno, Bun, and Node.js
Me • Yusuke Wada • Supervisor at TravelBook Inc. •
Web developer, Web framework developer • https://yusukebe.com/ • https://github.com/yusukebe 2
Today's topics • Core concepts of Hono 1. Multi-runtimes 2.
Ultrafast 3. Middleware 4. Experience 3
Hono in 1min. 4
Initial Commit • 2021-12-15 5
Star History 6
Who is using Hono • cdnjs API Server • Drivly
- Commerce infrastructure for the automotive industry • Ultra - Zero-Legacy Deno/React Suspense SSR Framework • Deno cli/bench/http 7
Workers Launchpad 8 ref: https://blog.cloud fl are.com/launchpad-fall-22/
Deno benchmarks 9 https://deno.land/benchmarks
Concept 1 Multi-runtimes 10
Hono works on... • Cloud fl are Workers / workerd
• Vercel Edge Runtime • Fastly Compute@Edge • Deno • Bun • Node.js • and more... 11
The same code runs on all platforms 12
Cloudflare Workers and Bun
Fastly Compute@Edge and Vercel Edge Runtime
Deno
Node.js
Thanks to Web standards • Zero-dependencies / No poly fi
ll • Web-interoperable Runtimes will be powered by WinterCG 17
Cloudflare Workers 18 ref: https://developers.cloud fl are.com/workers/runtime-apis/
Deno 19 ref: https://deno.land/
[email protected]
/runtime/web_platform_apis
Bun 20 ref: https://github.com/oven-sh/bun#Reference
Node.js 21 ref: https://github.com/honojs/node-server • Using `@remix-run/web-fetch`
context.ts 22 Discussion in WinterCG => https://github.com/wintercg/runtime-keys/pull/2
Great 👍 23
Concept 2 Ultrafast 24
Cloudflare Workers 25 ref: https://github.com/honojs/hono/tree/main/benchmarks/handle-event
Deno 26 ref: https://github.com/denosaurs/bench
Bun 27 ref: https://github.com/SaltyAom/bun-http-framework-benchmark
Node.js • Fastify • Reqs/sec 63417.00 5358.22 67487.06 • Express
• Reqs/sec 20709.94 1683.03 23045.34 • Hono with @honojs/node-server • Reqs/sec 32054.95 2642.04 35583.36 28
Node.js - router 29 Decode URI, Handle Query strings Does
not support regexp Does not support regexp
Why so fast? 30
3+1 Routers 1. StaticRouter • Fastest, supports only static routes.
2. RegExpRouter • Faster, supports almost routes. 3. TrieRouter • Slowest, supports all routes. But it's faster than other routers in the world. 31
"Linear" router 32
ref: https://github.com/yusukebe/pico
TrieRouter • Using Trie Tree structure • Support all patterns
34
None
RegExpRouter • Match the route with using one big Regex
made before dispatch. • By @usualoma • https://speakerdeck.com/usualoma/ultrafast-js-router 36
37
StaticRouter • Optimized for static routings • Does not support
dynamic routings such as "path parameters" 38
None
SmartRouter • The default router • Automatically picks the best
router from the three routers. 40 • StaticRouter • RegExpRouter • TrieRouter
Great 👍 41
Concept 3 Middleware 42
Small core • hono.ts • context.ts • compose.ts • request.ts
43 Basic app with Wrangler: Total Upload: 34.15 KiB / gzip: 8.26 KiB
Three types of Middleware • Built-in Middleware - including the
package • Custom Middleware - created by the users • Third-party Middleware - depends on external libraries 44
Built-in Middleware • Basic Auth • Bearer Auth • Cache
• Compress • CORS • Etag • html • JSX • JWT Auth • Logger • Pretty JSON • Serve Static • Validator 45
JSX Middleware 46
Validator Middleware 47
Custom Middleware 48
Third-party Middleware 49 • GraphQL Server • Firebase Auth •
Sentry • tRPC (?) ref: https://github.com/honojs/hono/issues/582
Great 👍 50
Concept 4 Experience 51
TypeScript • Wrangler, Deno, and Bun fi rst-class support TypeScript.
52
Path parameters 53
Validator Middleware 54
Easy to write tests • With `jest-environment-mini fl are` •
We can do test `Request` to `Response` 55
Great 👍 56
Example: Blog 57
import 58
Model 59
Logic 60
JSX 61
GET / 62
POST /post 63
Use cases in the real world 64
With Cloudflare R2 65 • github.com/yusukebe/r2-image-worker • Store and Deliver
images with R2 backend Cloud fl are Workers. ref: https://github.com/yusukebe/r2-image-worker
With Cloudflare D1 66 ref: https://blog.cloud fl are.com/making-static-sites-dynamic-with-cloud fl are-d1/
Cache control 67 ref: https://yusukebe.com/posts/2022/wsh/
Express alternative on Bun 68
Feature plans 69
Ecosystem • For Third-party Middleware • monorepo • API specs
as Types • tRPC like, but integrated 70
API specs as Types 71 ref: https://github.com/honojs/hono/issues/582
And... 72
Going to Standard web framework for Web standards 73
One more thing 74
Pico 75 Pico is ultra-tiny (about 1kB) web framework using
URLPattern. Pico works on Cloud fl are Workers and Deno. Pico is compatible with Hono.
Love 76
Thanks • Thanks to all contributors, all supporters, and all
users!! 77
Try Hono! 78 https://honojs.dev