Deno 1.13 稳定版发布

Deno 1.13 稳定版已发布,主要包含以下新特性和变更:

原生 HTTP server API

原生 HTTP server API 在此版本中已进入稳定阶段,可有效地为 HTTP/1.1 和 HTTP/2 流量提供服务:

for await (const conn of Deno.listen({ port: 4500 })) {
  (async () => {
    for await (const { respondWith } of Deno.serveHttp(conn)) {
      respondWith(new Response("Hello World"));
    }
  })();
}

支持self.structuredClone()

self.structuredClone()以简单、常用且同步的 API 公开了用于在 Web Worker 和 MessagePort 之间传递消息的结构化克隆算法。

import { assert } from "https://deno.land/std@0.104.0/testing/asserts.ts";

// Create an object with a value and a circular reference to itself.
const foo = { bar: "baz" };
foo.foo = foo;

// Clone it
const clone = self.structuredClone(foo);

assert(clone !== foo); // assert they are not the same object
assert(clone.bar === "baz"); // assert they  do have the same value though
assert(clone.foo === clone); // assert that the circular reference is preserved

console.log("All assertions passed!");

尝试使用:

deno run https://deno.com/v1.13/structured_clone.js

升级 WebCrypto APIs

此版本为WebCrypto APIs 增加了部分功能:

  • crypto.subtle.importKey()crypto.subtle.exportKey()支持导入和导出原始 HMAC 密钥
  • crypto.subtle.verify()支持验证从 HMAC 密钥创建的签名

详情查看发布公告

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/94500.html

(0)
上一篇 2021年8月17日
下一篇 2021年8月17日

相关推荐

发表回复

登录后才能评论