官方發佈網址:https://nodejs.org/en/blog/release/v18.0.0/
const res = await fetch('https://nodejs.org/api/documentation.json'); if (res.ok) { const data = await res.json(); console.log(data); }
Node的全域環境上支援實驗性的fetch API。實作基於undici,一個為Node編寫的HTTP/1.1客戶端。
同時,Node現在可以使用下列全域變數:fetch、FormData、Headers、Request和Response。
import test from 'node:test'; import * as assert from 'assert/strict'; test('sync test', (t) => { assert.equal(1, 1); } ); test('async test', async (t) => { assert.equal(1, 1); } );
Node下載支援Web Streams API(MDN),這表示Node可以透過Streams API允許JavaScript以程式設計的方式存取透過網路接收的資料流。
buffer新增Blob API,Blob封裝了不可變的原始數據,可以在多個工作執行緒之間安全地共享這些數據。
另外,新增的BroadcastChannel 實例允許與綁定到相同channel name 的所有其他BroadcastChannel 實例進行非同步一對多重通訊。
V8將更新為10.1版,這是Chromium 101的一部分。與Node.JS 17.9.0相比,包括以下新功能:
Import Assertions 提案為模組導入語句新增了內聯語法。此類斷言目的是以跨JavaScript環境的通用方式支援其他類型的模組,從JSON模組開始。
語法如下(導入JSON模組的建議方法):
import json from "./foo.json" assert { type: "json" }; import("foo.json", { assert: { type: "json" } });
其他更多功能請參考文章開頭的位址!