タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

jsxに関するmizdraのブックマーク (1)

  • Speeding up the JavaScript ecosystem - Server Side JSX

    In the realm of web development, the efficiency of server-side rendering HTML plays a crucial role in delivering fast and responsive user experiences. However, a notable challenge arises from the existing JSX transforms that turn JSX into valid JavaScript: They are primarily tailored for browser environments, often generating excessive memory overhead and causing frequent Garbage Collection pauses

    Speeding up the JavaScript ecosystem - Server Side JSX
    mizdra
    mizdra 2024/05/18
    JSX をタグ付きテンプレートリテラルにトランスパイルすることで、オブジェクトの頻繁なメモリ割当を回避し、レンダリング速度と GC に掛かる時間を削減するアプローチについて。同アプローチは Deno に実装されてる。
  • 1