summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 672a592a0d338fe5d5a3f1178eb045693e22f726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Node.js Undici</title>
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <meta name="description" content="A HTTP/1.1 client, written from scratch for Node.js.">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
  <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
  <link rel="icon" type="image/png" href="https://nodejs.org/static/images/favicons/favicon-32x32.png"/>
  <link rel="icon" type="image/png" href="https://nodejs.org/static/images/favicons/favicon-16x16.png" />
  <style>
  </style>
</head>
<body>
  <div id="app"></div>
  <script>
    window.$docsify = {
      name: 'Node.js Undici',
      repo: 'https://github.com/nodejs/undici',
      loadSidebar: 'docsify/sidebar.md',
      auto2top: true,
      subMaxLevel: 3,
      maxLevel: 3,
      themeColor: '#2B91F0',
      noCompileLinks: [
        'benchmarks/.*'
      ],
      relativePath: true
    }
  </script>
  <!-- Docsify v4 -->
  <script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>