diff --git a/_i18n/ja/_posts/2025/2025-01-09-pnpm-10-node-v23.6.0-experimental-strip-types-e18e.md b/_i18n/ja/_posts/2025/2025-01-09-pnpm-10-node-v23.6.0-experimental-strip-types-e18e.md
new file mode 100644
index 00000000000..294d6b10e21
--- /dev/null
+++ b/_i18n/ja/_posts/2025/2025-01-09-pnpm-10-node-v23.6.0-experimental-strip-types-e18e.md
@@ -0,0 +1,204 @@
+---
+title: "2025-01-09のJS: pnpm 10、Node v23.6.0(` --experimental-strip-types`をデフォルトで有効化)、e18e"
+author: "azu"
+layout: post
+date: 2025-01-09T11:30:40.138Z
+category: JSer
+tags:
+- nodejs
+- React
+- Tools
+- performance
+- pnpm
+
+---
+
+JSer.info #721 - pnpm 10がリリースされました。
+
+- [Release pnpm 10 · pnpm/pnpm](https://github.com/pnpm/pnpm/releases/tag/v10.0.0)
+
+pnpm v10.0.0では、インストールするパッケージのlifecycle scriptをデフォルトで実行しないように変更されています。
+`pnpm.onlyBuiltDependencies`の許可リストで定義したパッケージのみ`postinstall`などのlifecycle scriptが実行されるようになっています。
+
+また、`pnpm link`の挙動の変更、`packageManager`を参照してpnpmのバージョンを確認するように、ハッシュアルゴリズムをSHA256に変更、storeバージョンの更新など行われています。
+そのほかには、pnpmに関する設定を共有できる`configDependencies`を追加。 `verifyDepsBeforeRun`オプションでlockと`node_modules/`の状態を比較して自動インストールなどの挙動を選択できるようになっています。
+
+---
+
+Node.js v23.6.0がリリースされました。
+
+- [Node.js — Node v23.6.0 (Current)](https://nodejs.org/en/blog/release/v23.6.0)
+
+Node.js v23.6.0では、`--experimental-strip-types`フラグがデフォルトで有効になっています。
+これによって、TypeScriptファイルから型情報を削除したものを実行できるようになっています。
+
+```sh
+$ echo "const add = (a: number, b: number) => a + b; console.log(add(1, 2));" > index.ts
+$ node index.ts
+3
+```
+
+ただし、`enum`や`namespace`などの変換が必要なTypeScriptの機能は引き続き[--experimental-transform-types](https://nodejs.org/docs/latest/api/cli.html#--experimental-transform-types)フラグが必要です。
+
+---
+
+[The journey so far | e18e](https://e18e.dev/blog/journey-so-far.html)という記事では、e18e (Ecosystem Performance)というイニシアチブでのJavaScriptのエコシステムのクリーンアップの取り組みについてまとめられています。
+
+色々なツールやライブラリの不要な依存を取り除く活動などについてまとめられています
+
+----
+
+{% include inline-support.html %}
+
+----
+
+
ヘッドライン
+
+----
+
+## Release v12.3.0 · vueuse/vueuse
+[github.com/vueuse/vueuse/releases/tag/v12.3.0](https://github.com/vueuse/vueuse/releases/tag/v12.3.0 "Release v12.3.0 · vueuse/vueuse")
+Vue library ReleaseNote
+
+vueuse v12.3.0リリース。
+
+
+----
+
+## Release @pandacss/dev@0.50.0 · chakra-ui/panda
+[github.com/chakra-ui/panda/releases/tag/%40pandacss%2Fdev%400.50.0](https://github.com/chakra-ui/panda/releases/tag/%40pandacss%2Fdev%400.50.0 "Release @pandacss/dev@0.50.0 · chakra-ui/panda")
+pandacs library ReleaseNote
+
+Panda CSS 0.50.0リリース。
+`panda analyze`でDesign Tokenやハードコードされている値の割合を表示できるように
+
+
+----
+
+## Release 0.10.0 | StyleX
+[stylexjs.com/blog/v0.10.0](https://stylexjs.com/blog/v0.10.0 "Release 0.10.0 | StyleX")
+React css PostCSS library ReleaseNote
+
+StyleX v0.10.0リリース。
+PostCSSプラグインを刷新し、`@stylexjs/nextjs-plugin`を非推奨に変更。
+`debug`オプションの追加、`inherit: false`の`@property`を使って動的なCSS Custom Propertyを管理することでパフォーマンスの改善など
+
+
+----
+
+## Release v3.11.0 · lerna-lite/lerna-lite
+[github.com/lerna-lite/lerna-lite/releases/tag/v3.11.0](https://github.com/lerna-lite/lerna-lite/releases/tag/v3.11.0 "Release v3.11.0 · lerna-lite/lerna-lite")
+npm monorepo Tools ReleaseNote
+
+lerna-lite v3.11.0リリース。
+pnpmの`catalog:` protocolの限定的なサポートを追加
+
+
+----
+
+## facebookexperimental/Recoil: Recoil is an experimental state management library for React apps. It provides several capabilities that are difficult to achieve with React alone, while being compatible with the newest features of React.
+[github.com/facebookexperimental/Recoil](https://github.com/facebookexperimental/Recoil "facebookexperimental/Recoil: Recoil is an experimental state management library for React apps. It provides several capabilities that are difficult to achieve with React alone, while being compatible with the newest features of React.")
+React library news
+
+Recoilのリポジトリがアーカイブ化された
+
+----
+
+## Release pnpm 10 · pnpm/pnpm
+[github.com/pnpm/pnpm/releases/tag/v10.0.0](https://github.com/pnpm/pnpm/releases/tag/v10.0.0 "Release pnpm 10 · pnpm/pnpm")
+pnpm ReleaseNote
+
+pnpm v10.0.0リリース。
+インストールするパッケージのlifecycle scriptをデフォルトで実行しないように変更。
+ `pnpm link`の挙動の変更、`packageManager`を参照してpnpmのバージョンを確認するように、ハッシュアルゴリズムをSHA256に変更、storeバージョンの更新。
+pnpmに関する設定を共有できる`configDependencies`を追加。 `verifyDepsBeforeRun`オプションが追加され、lockと`node_modules/`の状態を比較して自動インストールなどの挙動を選択できるようになるなど。
+
+
+----
+
+## Firefox 134.0, See All New Features, Updates and Fixes
+[www.mozilla.org/en-US/firefox/134.0/releasenotes/](https://www.mozilla.org/en-US/firefox/134.0/releasenotes/ "Firefox 134.0, See All New Features, Updates and Fixes")
+Firefox ReleaseNote
+
+Firefox 134リリース。
+Stage 3の`RegExp.escape()`、Stage 4の`Promise.try()`をサポートなど
+
+- [Firefox 134 for developers - Mozilla | MDN](https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Releases/134 "Firefox 134 for developers - Mozilla | MDN")
+
+----
+
+## Release v26.0 Reactime · open-source-labs/Reactime
+[github.com/open-source-labs/Reactime/releases/tag/v26.0](https://github.com/open-source-labs/Reactime/releases/tag/v26.0 "Release v26.0 Reactime · open-source-labs/Reactime")
+React performance Tools ReleaseNote
+
+Reactのデバッグ拡張ツールであるReactime 26.0リリース。
+UIの刷新、useContextの状態の視覚化、タイムトラベルデバッグ機能の改善など
+
+
+----
+
+## Node.js — Node v22.13.0 (LTS)
+[nodejs.org/en/blog/release/v22.13.0](https://nodejs.org/en/blog/release/v22.13.0 "Node.js — Node v22.13.0 (LTS)")
+nodejs ReleaseNote
+
+Node.js v22.13.0リリース。
+Permission ModelをStableに変更、
+
+
+----
+
+## Node.js — Node v23.6.0 (Current)
+[nodejs.org/en/blog/release/v23.6.0](https://nodejs.org/en/blog/release/v23.6.0 "Node.js — Node v23.6.0 (Current)")
+nodejs TypeScript ReleaseNote
+
+Node.js v23.6.0リリース。
+`--experimental-strip-types`をデフォルトで有効にして、TypeScriptファイルをフラグなしで実行できるように変更。
+
+
+----
+アーティクル
+
+----
+
+## Composable Caching with Next.js | Next.js
+[nextjs.org/blog/composable-caching](https://nextjs.org/blog/composable-caching "Composable Caching with Next.js | Next.js")
+Next.js article
+
+Next.jsの"use cache" directiveについて。
+"use cache"をつけた関数はserver functionに変換されメモ化された結果を返すようになる。
+クロージャーの場合のキャッシュの動作や`cache()`関数について
+
+
+----
+
+## The journey so far | e18e
+[e18e.dev/blog/journey-so-far.html](https://e18e.dev/blog/journey-so-far.html "The journey so far | e18e")
+performance nodejs JavaScript article
+
+e18eでのJavaScriptのエコシステムのクリーンアップの取り組みについて。
+
+
+----
+
+## 1人 Intl Advent Calendar 2024 - Adventar
+[adventar.org/calendars/10555](https://adventar.org/calendars/10555 "1人 Intl Advent Calendar 2024 - Adventar")
+JavaScript i18n article
+
+Intl APIについての連載記事
+
+- [1人Intl Advent Calendar を完走しました](https://zenn.dev/cybozu_frontend/articles/intl-advent-calendar-24-recap "1人Intl Advent Calendar を完走しました")
+
+----
+サイト、サービス、ドキュメント
+
+----
+
+## CodSpeed: Optimize Performance, Eliminate Regressions
+[codspeed.io/](https://codspeed.io/ "CodSpeed: Optimize Performance, Eliminate Regressions")
+webservice benchmark python Rust nodejs
+
+CIでベンチマークを取得してリグレッションを検知するサービス。
+Python/Rust/Node.jsに対応している
+
+
+----