Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Faster reloading of isolated modules

オープン
#65 コメント 2 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
30/100
issue の種類
機能追加
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
typescript, vite

調査の方向性

まず、分離されたモジュールの再読み込み経路と、現在再読み込みが行われているリクエストのライフサイクルを特定します。モジュールとインポートがどのように表現されているかを追跡し、各リクエストの後に状態を持つモジュールを直ちに再読み込みする最小限の方法を定義して、issueの要件に照らして選択的な再読み込みの動作を検証します。

索引モデルが issue の本文から書いたものです。

説明

proposal runtime

Currently, all isolated modules are reloaded between page requests. Additionally, this reloading does not take place until the next request comes in.

  • We should reload eagerly (after each request, instead of before)
  • We should reload only the modules that are stateful
  • We need to build a module graph (really just the importers of each module) so we can reload selectively

The first solution that comes to mind is import.meta.hot (Vite's HMR API). This is a flexible solution, as the user (and even plugins) can control how a module is reloaded, instead of only switching reload on/off. But it's also more verbose than, say, adding /* @hot */ at the top of the module, or managing a list of stateful modules from your Saus config (which I'd like to avoid, since the list can get out of sync).

I don't think we'll need to implement the entirety of Vite's HMR API. Just the basics for now.

主要言語
TypeScript
スター
38
フォーク
1
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

alloc/saus のほかの issue

alloc/saus の issue をすべて見る

似ている issue

TypeScript の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。