-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (56 loc) · 2.39 KB
/
index.html
File metadata and controls
59 lines (56 loc) · 2.39 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>NestJS Undici - HTTP Client Module for NestJS</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description"
content="NestJS Undici - A powerful HTTP client module for NestJS based on @nodejs/undici. Provides utility functions for making HTTP requests in your NestJS applications." />
<meta name="keywords" content="nestjs, undici, http client, nodejs, typescript, api, rest, http" />
<meta name="author" content="Hebert Cisco" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<meta property="og:title" content="NestJS Undici - HTTP Client Module for NestJS" />
<meta property="og:description" content="A powerful HTTP client module for NestJS based on @nodejs/undici" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/hebertcisco/nestjs-undici" />
<meta property="og:image"
content="https://d33wubrfki0l68.cloudfront.net/e937e774cbbe23635999615ad5d7732decad182a/26072/logo-small.ede75a6b.svg" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css" />
<link rel="icon" type="image/png"
href="https://d33wubrfki0l68.cloudfront.net/e937e774cbbe23635999615ad5d7732decad182a/26072/logo-small.ede75a6b.svg" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'NestJS Undici',
repo: 'https://github.com/hebertcisco/nestjs-undici',
loadSidebar: 'docsify/sidebar.md',
auto2top: true,
subMaxLevel: 3,
maxLevel: 3,
themeColor: '#ea2845',
noCompileLinks: ['benchmarks/.*'],
relativePath: true,
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: 'Search documentation...',
noData: 'No results found!',
depth: 3
},
plugins: [
function (hook, vm) {
hook.beforeEach(function (content) {
return content + '\n\n---\n\nLast updated: {docsify-updated}';
});
}
]
};
</script>
<!-- Docsify v4 -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4.13.0/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
</body>
</html>