diff --git a/_i18n/ja/_posts/2023/2023-10-31-next.js-14-msw-2-node.js-21.1.0.md b/_i18n/ja/_posts/2023/2023-10-31-next.js-14-msw-2-node.js-21.1.0.md new file mode 100644 index 00000000000..64a95a5cc91 --- /dev/null +++ b/_i18n/ja/_posts/2023/2023-10-31-next.js-14-msw-2-node.js-21.1.0.md @@ -0,0 +1,228 @@ +--- +title: "2023-10-31のJS: Next.js 14、MSW 2、Node.js 21.1.0" +author: "azu" +layout: post +date: 2023-10-31T13:19:42.271Z +category: JSer +tags: +- Next.js +- nodejs +- vite +- parcel +- webpack + +--- + +JSer.info #667 - Next.js 14がリリースされました。 + +- [Next.js 14 | Next.js](https://nextjs.org/blog/next-14) +- [Release v14.0.0 · vercel/next.js](https://github.com/vercel/next.js/releases/tag/v14.0.0) + +Node.js 16のサポート終了、`next export`コマンドを非推奨化、`next/image`の`domains`オプションを非推奨化などの変更が含まれています。 +また、Server ActionのStable化、Metadata APIの改善が含まれています。 +実験的な機能として``を使ったPartial Prerenderingのサポートが追加されています。 + +今回のリリースに合わせて、Next.jsのチュートリアルも新しくものが公開されています。 + +- [Next.js by Vercel - The React Framework | Next.js by Vercel - The React Framework](https://nextjs.org/learn) + +---- + +HTTPリクエストのモックライブラリであるMSW 2.0がリリースされています。 + +- [Introducing MSW 2.0 - Mock Service Worker](https://mswjs.io/blog/introducing-msw-2.0) +- [Release v2.0.0 · mswjs/msw](https://github.com/mswjs/msw/releases/tag/v2.0.0) + +Node.js 16のサポート終了、APIのシグネチャーの変更、ブラウザ向けのAPIを`msw/browser`へ移動などの破壊的な変更が含まれています。 +APIの変更範囲は多いですが、マイグレーションガイドも合わせて公開されています。 + +- [1.x → 2.x - Mock Service Worker](https://mswjs.io/docs/migrations/1.x-to-2.x) + +また、`ReadableStream`/`FormData`のモックをサポートなども追加されています。 + +---- + +Node.js 21.1.0がリリースされました。 + +- [Node v21.1.0 (Current) | Node.js](https://nodejs.org/en/blog/release/v21.1.0) + +Ambiguous fileがESMかを判定する`--experimental-detect-module`フラグの追加されています。 +詳しくは、次の記事で解説しています。 + +- [Deep Dive: Node.jsのESMデフォルト化への道 - JSer.info](https://jser.info/2023/10/18/node.js-roadmap-esm-by-default/) + +また、`vm.Script`のバグの修正が修正されています。 +この問題はNode.js 16.11.0+以降で起きていて、主にJestでメモリが確保され続けるためクラッシュする問題が発生してました。 + +- [[Bug]: Memory consumption issues on Node JS 16.11.0+ · Issue #11956 · jestjs/jest](https://github.com/jestjs/jest/issues/11956) + + +---- + +{% include inline-support.html %} + +---- + +

ヘッドライン

+ +---- + +## Next.js 14 | Next.js +[nextjs.org/blog/next-14](https://nextjs.org/blog/next-14 "Next.js 14 | Next.js") +

Next.js ReleaseNote

+ +Next.js 14リリース。 +Node.js 16のサポート終了、`next export`コマンドを非推奨化、`next/image`の`domains`オプションを非推奨化。 +Server ActionのStable化、Metadata APIの改善。 +実験的な機能として``を使ったPartial Prerenderingのサポートなど + +- [Release v14.0.0 · vercel/next.js](https://github.com/vercel/next.js/releases/tag/v14.0.0 "Release v14.0.0 · vercel/next.js") + +---- + +## Astro 3.4: Page Partials | Astro +[astro.build/blog/astro-340/](https://astro.build/blog/astro-340/ "Astro 3.4: Page Partials | Astro") +

astro ReleaseNote

+ +Astro 3.4リリース。 +page componentをpartial pageとして利用できる`partial`オプションをサポート、画像最適化のパフォーマンス改善。 +実験的な機能としてDev Overlayを追加など + +- [Release astro@3.4.0 · withastro/astro](https://github.com/withastro/astro/releases/tag/astro%403.4.0 "Release astro@3.4.0 · withastro/astro") + +---- + +## Release Release v1.6.0 · axios/axios +[github.com/axios/axios/releases/tag/v1.6.0](https://github.com/axios/axios/releases/tag/v1.6.0 "Release Release v1.6.0 · axios/axios") +

HTTP library ReleaseNote security

+ +axios v1.6.0リリース。 +`X-XSRF-TOKEN`というCookieが設定されている時に、`withCredentials`オプションが有効だと、別オリジンに対するリクエストにも`X-XSRF-TOKEN`の値が送信される脆弱性の修正 + + +---- + +## Release v8.10.0 · pnpm/pnpm +[github.com/pnpm/pnpm/releases/tag/v8.10.0](https://github.com/pnpm/pnpm/releases/tag/v8.10.0 "Release v8.10.0 · pnpm/pnpm") +

pnpm ReleaseNote

+ +pnpm v8.10.0リリース。 +`supportedArchitectures`で複数のアーキテクチャを指定できるように。 +ホスト環境とDocker環境に両方のアーキテクチャのバイナリをインストール際などに利用できる。 + + +---- + +## Introducing MSW 2.0 - Mock Service Worker +[mswjs.io/blog/introducing-msw-2.0](https://mswjs.io/blog/introducing-msw-2.0 "Introducing MSW 2.0 - Mock Service Worker") +

JavaScript testing library ReleaseNote

+ +MSW 2.0リリース。 +Node.js 16のサポート終了、APIのシグネチャーの変更、ブラウザ向けのAPIを`msw/browser`へ移動。 +`ReadableStream`/`FormData`のモックをサポートなど + +- [Release v2.0.0 · mswjs/msw](https://github.com/mswjs/msw/releases/tag/v2.0.0 "Release v2.0.0 · mswjs/msw") +- [1.x → 2.x - Mock Service Worker](https://mswjs.io/docs/migrations/1.x-to-2.x "1.x → 2.x - Mock Service Worker") + +---- + +## Node v21.1.0 (Current) | Node.js +[nodejs.org/en/blog/release/v21.1.0](https://nodejs.org/en/blog/release/v21.1.0 "Node v21.1.0 (Current) | Node.js") +

nodejs ReleaseNote

+ +Node.js v21.1.0リリース。 +Ambiguous fileがESMかを判定する`--experimental-detect-module`フラグの追加、Jestでのメモリリークの原因となっていた`vm.Script`のバグの修正など + +- [Deep Dive: Node.jsのESMデフォルト化への道 - JSer.info](https://jser.info/2023/10/18/node.js-roadmap-esm-by-default/ "Deep Dive: Node.jsのESMデフォルト化への道 - JSer.info") +- [\[Bug\]: Memory consumption issues on Node JS 16.11.0+ · Issue #11956 · jestjs/jest](https://github.com/jestjs/jest/issues/11956 "\[Bug\]: Memory consumption issues on Node JS 16.11.0+ · Issue #11956 · jestjs/jest") + +---- + +## Release v30.0.0-alpha.1 · jestjs/jest +[github.com/jestjs/jest/releases/tag/v30.0.0-alpha.1](https://github.com/jestjs/jest/releases/tag/v30.0.0-alpha.1 "Release v30.0.0-alpha.1 · jestjs/jest") +

jest ReleaseNote

+ +Jest v30.0.0-alpha.1リリース。 +`mts`/`cts`をデフォルトでサポート、fake timerの改善、SnapshotでError Causeをサポート、Prettier 3のサポートなど + + +---- +

アーティクル

+ +---- + +## JavaScriptビルドツールの整理 各ツールの機能と依存関係 +[zenn.dev/nakaakist/articles/86457bf2908379](https://zenn.dev/nakaakist/articles/86457bf2908379 "JavaScriptビルドツールの整理 各ツールの機能と依存関係") +

vite parcel webpack rspack Next.js bundler article

+ +Vite/Parcel/webpack/Rspack/Turbopack/Next.js/Rollup/esbuild/SWC/Bun/Babel/Terser の特徴と依存関係について。 + + +---- + +## Deprecation of formatting rules - ESLint - Pluggable JavaScript Linter +[eslint.org/blog/2023/10/deprecating-formatting-rules/](https://eslint.org/blog/2023/10/deprecating-formatting-rules/ "Deprecation of formatting rules - ESLint - Pluggable JavaScript Linter") +

ESLint article

+ +ESLint v8.53.0でスタイル系のルール(スペースやセミコロンなどを扱うルール)は、非推奨となる。 +マイグレーション先としてスタイル系のルールをメンテナンスするESLint StylisticやPrettierなどのツールの利用を推奨している。 + +- [ESLint Stylistic | ESLint Stylistic](https://eslint.style/ "ESLint Stylistic | ESLint Stylistic") + +---- + +## Announcing WinterJS +[wasmer.io/posts/announcing-winterjs-service-workers](https://wasmer.io/posts/announcing-winterjs-service-workers "Announcing WinterJS") +

JavaScript WebAssembly ServiceWorker article

+ +WinterCG仕様に準拠したJavaScript Runtime。 +SpiderMonkeyをRuntimeとして使い、Service Workers APIを実装している。 +WasmerのWASIX準拠にしている。 + +- [wasmerio/winterjs: Winter is coming... ❄️](https://github.com/wasmerio/winterjs "wasmerio/winterjs: Winter is coming... ❄️") + +---- + +## サードパーティ Cookie の廃止に向けた準備 - Chrome for Developers +[developer.chrome.com/ja/blog/cookie-countdown-2023oct/](https://developer.chrome.com/ja/blog/cookie-countdown-2023oct/ "サードパーティ Cookie の廃止に向けた準備 - Chrome for Developers") +

Chrome article

+ +Chromeの3rd party Cookieの廃止と代替Proposalについて + + +---- +

スライド、動画関係

+ +---- + +## JavaScript JIT compiler - YouTube +[www.youtube.com/playlist?list=PLMOpZvQB55bcTsXzRcBjHJJb52OGWwNjr](https://www.youtube.com/playlist?list=PLMOpZvQB55bcTsXzRcBjHJJb52OGWwNjr "JavaScript JIT compiler - YouTube") +

JavaScript C++ video

+ +LadybirdのJavaScriptエンジンであるLibJSにJITを実装していく動画シリーズ。 + +- [serenity/Userland/Libraries/LibJS at master · SerenityOS/serenity](https://github.com/SerenityOS/serenity/tree/master/Userland/Libraries/LibJS "serenity/Userland/Libraries/LibJS at master · SerenityOS/serenity") + +---- + +## Vue Fes Japan 2023 資料 X ポストまとめ +[zenn.dev/punkshiraishi/scraps/bf3829dc79466b](https://zenn.dev/punkshiraishi/scraps/bf3829dc79466b "Vue Fes Japan 2023 資料 X ポストまとめ") +

Vue Conference slide

+ +Vue Fes Japan 2023のスライドまとめ + +- [Vue Fes Japan 2023](https://vuefes.jp/2023/ "Vue Fes Japan 2023") + +---- +

ソフトウェア、ツール、ライブラリ関係

+ +---- + +## joshmarinacci/node-pureimage: Pure JS implementation of the HTML Canvas 2D drawing API +[github.com/joshmarinacci/node-pureimage](https://github.com/joshmarinacci/node-pureimage "joshmarinacci/node-pureimage: Pure JS implementation of the HTML Canvas 2D drawing API") +

nodejs JavaScript library

+ +Pure JavaScriptなNode.js向けCanvas APIの実装ライブラリ。 + + +----