diff options
Diffstat (limited to '')
-rw-r--r-- | index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..672a592 --- /dev/null +++ b/index.html @@ -0,0 +1,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> |