-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2022-07-14のJS: Bun(all-in-one JavaScript runtime)、Vite 3.0.0、600回目の更新 #998
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
azu
changed the title
2022-07-13のJS: Bun(all-in-one JavaScript runtime)、Vite 3.0.0
2022-07-13のJS: Bun(all-in-one JavaScript runtime)、Vite 3.0.0、600回目の更新
Jul 13, 2022
…me-vite-3.0.0-600.md
azu
changed the title
2022-07-13のJS: Bun(all-in-one JavaScript runtime)、Vite 3.0.0、600回目の更新
2022-07-14のJS: Bun(all-in-one JavaScript runtime)、Vite 3.0.0、600回目の更新
Jul 13, 2022
…me-vite-3.0.0-600.md
…me-vite-3.0.0-600.md
…me-vite-3.0.0-600.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BunというZig言語とJavaScriptCore(WebKitのJavaScriptエンジン)を使って書かれたJavaScript Runtimeが公開されました。
Bunは"all-in-one JavaScript runtime"とあるように、TypeScript/JSXのTranspiler/Bundler/Task Runerを同梱し、npm互換のパッケージマネージャーやNode-API(N-API)互換の実装、FetchなどのWeb APIの実装をもっています。
Denoと似ている立ち位置のRuntimeですが、Node.js互換のAPIや
package.json
を扱えるnpm互換の実装を持つことで、Node.jsを置き換えて利用できることが意識されています。Bunのロードマップは次のIssueで公開されています。
また、Bunをどのように作ったかについては、次の動画でインタビューに答えています。
Vite 3.0.0がリリースされました。
デフォルトのビルドターゲットをESMとDynamic Import/
import.meta
をサポートしてるブラウザに変更、オプションの変更や削除、デフォルトportを5173
に変更されています。また、minifyに利用する
terser
パッケージへの依存をオプショナルへ変更、import.meta.glob
の仕様変更、Wasmファイルのimport方法の変更などが含まれています。600回目の更新
この投稿で、JSer.infoは600回目の更新となります。
500回目の更新からは大体2年でした。
JSer.infoのslackワークスペースでは、気になるものを投稿したり、更新作業をやったりしています。
気になるものをメモ書きで投稿するぐらいの場所として扱うぐらいでいいと思います。
質問とかあったら調べて答える気もします。
JSer.infoのslackワークスペースは、次のリンクからだれでも自由に参加できます。
また、GitHub Sponsorsでの支援も引き続き募集しています。
<iframe src="https://github.com/sponsors/azu/card" title="Sponsor azu" height="225" width="600" style="border: 0;"></iframe>JavaScript周りも新しいツールとかがまた続々と出てきている気がします(特に最近はEdgeを意識したものが多い印象)。
今回公開されたBunも、作者が週80-90時間ぐらいを1年かけて作っているそうです。
こういう労力を結構かけて作られるものが増えている感じはします。
新しいツールが出てもウェブ標準互換やNode.js互換やCDN Edgeでの互換性などの互換性は強く意識されている感じはします。そのため、完全に全く新しい知識を必要とするものは意外と少なくて、既存のものに対して何かフラストレーションがあり、それを置き換えるために新しいツールとして作りながら既存との互換性を意識するといった形式が多い気がします(Bunの場合はフラストレーションが"速度"で、それを置き換える形で進化してきた)。
一方でGoogle Chromeが巨大となりウェブ標準のCentralization問題や、AppleはSafari以外のブラウザを許容しないこと対する問題なども起きています。
色々な物事が大きくなっている感覚はありますが、それを小さな視点から見ていくのがJSer.infoなのかなと思いました。