Hono と Bun を用いたフロントエンド環境を構築してみる
こんにちは、 @kz_morita です。
Hono と Bun 気になっていたフロントエンドの技術ですが、ちょっとしたツールを作る際に画面側も用意したいとなったので、つかってみた際のメモです。
https://hono.dev/ https://bun.sh/ 結論から言うと、上記の公式サイトの Setup と、React を導入する際に以下の記事を参照したらサクッと構築できました。
HonoでAPI付き雑React SPA最小 Install まずは、Bun のインストールから実施します。
# Install Bun $ curl -fsSL https://bun.sh/install | bash .profile (各個人の環境に合わせたもの。.bashrc とかでもOK ) に以下追加
$ export PATH="$PATH:$HOME/.bun/bin" 反映
$ source ~/.profile パスが通ったら確認します。
$ bun --version 1.0.29 $ bunx Usage: bunx [...flags] <package>[@version] [...flags and arguments] Execute an npm package executable (CLI), automatically installing into a global shared cache if not installed in node_modules.