deepv-code 1.0.182
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +3 -0
- package/bundle/assets/help/README.md +113 -0
- package/bundle/assets/help/cli-help-knowledge.md +1382 -0
- package/bundle/assets/sounds/README.md +74 -0
- package/bundle/assets/sounds/confirmation-required.wav +0 -0
- package/bundle/assets/sounds/response-complete.wav +0 -0
- package/bundle/assets/sounds/selection-made.wav +0 -0
- package/bundle/dvcode.js +4442 -0
- package/bundle/fix-binary-permissions.js +215 -0
- package/bundle/login/templates/authSelectPage.html +870 -0
- package/bundle/login/templates/deepv.ico +0 -0
- package/bundle/login/templates/feishu.ico +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/darwin-arm64-rg +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/darwin-x64-rg +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/linux-arm-rg +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/linux-arm64-rg +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/linux-x64-rg +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/rg.exe +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/win32-arm64-rg.exe +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/win32-ia32-rg.exe +0 -0
- package/bundle/node_modules/@vscode/ripgrep/bin/win32-x64-rg.exe +0 -0
- package/bundle/node_modules/@vscode/ripgrep/lib/download.js +357 -0
- package/bundle/node_modules/@vscode/ripgrep/lib/index.d.ts +1 -0
- package/bundle/node_modules/@vscode/ripgrep/lib/index.js +42 -0
- package/bundle/node_modules/@vscode/ripgrep/lib/postinstall.js +121 -0
- package/bundle/node_modules/@vscode/ripgrep/package.json +24 -0
- package/bundle/node_modules/undici/LICENSE +21 -0
- package/bundle/node_modules/undici/README.md +472 -0
- package/bundle/node_modules/undici/docs/docs/api/Agent.md +83 -0
- package/bundle/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
- package/bundle/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
- package/bundle/node_modules/undici/docs/docs/api/CacheStore.md +151 -0
- package/bundle/node_modules/undici/docs/docs/api/Client.md +281 -0
- package/bundle/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
- package/bundle/node_modules/undici/docs/docs/api/Connector.md +115 -0
- package/bundle/node_modules/undici/docs/docs/api/ContentType.md +57 -0
- package/bundle/node_modules/undici/docs/docs/api/Cookies.md +101 -0
- package/bundle/node_modules/undici/docs/docs/api/Debug.md +62 -0
- package/bundle/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +204 -0
- package/bundle/node_modules/undici/docs/docs/api/Dispatcher.md +1200 -0
- package/bundle/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
- package/bundle/node_modules/undici/docs/docs/api/Errors.md +49 -0
- package/bundle/node_modules/undici/docs/docs/api/EventSource.md +45 -0
- package/bundle/node_modules/undici/docs/docs/api/Fetch.md +52 -0
- package/bundle/node_modules/undici/docs/docs/api/H2CClient.md +262 -0
- package/bundle/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
- package/bundle/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
- package/bundle/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
- package/bundle/node_modules/undici/docs/docs/api/MockClient.md +77 -0
- package/bundle/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
- package/bundle/node_modules/undici/docs/docs/api/MockPool.md +548 -0
- package/bundle/node_modules/undici/docs/docs/api/Pool.md +84 -0
- package/bundle/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
- package/bundle/node_modules/undici/docs/docs/api/ProxyAgent.md +227 -0
- package/bundle/node_modules/undici/docs/docs/api/RedirectHandler.md +96 -0
- package/bundle/node_modules/undici/docs/docs/api/RetryAgent.md +45 -0
- package/bundle/node_modules/undici/docs/docs/api/RetryHandler.md +117 -0
- package/bundle/node_modules/undici/docs/docs/api/Util.md +25 -0
- package/bundle/node_modules/undici/docs/docs/api/WebSocket.md +85 -0
- package/bundle/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
- package/bundle/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
- package/bundle/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
- package/bundle/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
- package/bundle/node_modules/undici/docs/docs/best-practices/writing-tests.md +20 -0
- package/bundle/node_modules/undici/index-fetch.js +35 -0
- package/bundle/node_modules/undici/index.d.ts +3 -0
- package/bundle/node_modules/undici/index.js +183 -0
- package/bundle/node_modules/undici/lib/api/abort-signal.js +59 -0
- package/bundle/node_modules/undici/lib/api/api-connect.js +110 -0
- package/bundle/node_modules/undici/lib/api/api-pipeline.js +252 -0
- package/bundle/node_modules/undici/lib/api/api-request.js +199 -0
- package/bundle/node_modules/undici/lib/api/api-stream.js +209 -0
- package/bundle/node_modules/undici/lib/api/api-upgrade.js +110 -0
- package/bundle/node_modules/undici/lib/api/index.js +7 -0
- package/bundle/node_modules/undici/lib/api/readable.js +558 -0
- package/bundle/node_modules/undici/lib/api/util.js +95 -0
- package/bundle/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
- package/bundle/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
- package/bundle/node_modules/undici/lib/core/connect.js +164 -0
- package/bundle/node_modules/undici/lib/core/constants.js +143 -0
- package/bundle/node_modules/undici/lib/core/diagnostics.js +196 -0
- package/bundle/node_modules/undici/lib/core/errors.js +244 -0
- package/bundle/node_modules/undici/lib/core/request.js +397 -0
- package/bundle/node_modules/undici/lib/core/symbols.js +68 -0
- package/bundle/node_modules/undici/lib/core/tree.js +160 -0
- package/bundle/node_modules/undici/lib/core/util.js +988 -0
- package/bundle/node_modules/undici/lib/dispatcher/agent.js +135 -0
- package/bundle/node_modules/undici/lib/dispatcher/balanced-pool.js +206 -0
- package/bundle/node_modules/undici/lib/dispatcher/client-h1.js +1615 -0
- package/bundle/node_modules/undici/lib/dispatcher/client-h2.js +798 -0
- package/bundle/node_modules/undici/lib/dispatcher/client.js +614 -0
- package/bundle/node_modules/undici/lib/dispatcher/dispatcher-base.js +161 -0
- package/bundle/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
- package/bundle/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +151 -0
- package/bundle/node_modules/undici/lib/dispatcher/fixed-queue.js +159 -0
- package/bundle/node_modules/undici/lib/dispatcher/h2c-client.js +122 -0
- package/bundle/node_modules/undici/lib/dispatcher/pool-base.js +191 -0
- package/bundle/node_modules/undici/lib/dispatcher/pool.js +118 -0
- package/bundle/node_modules/undici/lib/dispatcher/proxy-agent.js +275 -0
- package/bundle/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
- package/bundle/node_modules/undici/lib/global.js +32 -0
- package/bundle/node_modules/undici/lib/handler/cache-handler.js +448 -0
- package/bundle/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
- package/bundle/node_modules/undici/lib/handler/decorator-handler.js +67 -0
- package/bundle/node_modules/undici/lib/handler/redirect-handler.js +227 -0
- package/bundle/node_modules/undici/lib/handler/retry-handler.js +342 -0
- package/bundle/node_modules/undici/lib/handler/unwrap-handler.js +96 -0
- package/bundle/node_modules/undici/lib/handler/wrap-handler.js +95 -0
- package/bundle/node_modules/undici/lib/interceptor/cache.js +372 -0
- package/bundle/node_modules/undici/lib/interceptor/dns.js +432 -0
- package/bundle/node_modules/undici/lib/interceptor/dump.js +111 -0
- package/bundle/node_modules/undici/lib/interceptor/redirect.js +21 -0
- package/bundle/node_modules/undici/lib/interceptor/response-error.js +95 -0
- package/bundle/node_modules/undici/lib/interceptor/retry.js +19 -0
- package/bundle/node_modules/undici/lib/llhttp/.gitkeep +0 -0
- package/bundle/node_modules/undici/lib/llhttp/constants.d.ts +97 -0
- package/bundle/node_modules/undici/lib/llhttp/constants.js +498 -0
- package/bundle/node_modules/undici/lib/llhttp/constants.js.map +1 -0
- package/bundle/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
- package/bundle/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
- package/bundle/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
- package/bundle/node_modules/undici/lib/llhttp/utils.js +15 -0
- package/bundle/node_modules/undici/lib/llhttp/utils.js.map +1 -0
- package/bundle/node_modules/undici/lib/mock/mock-agent.js +224 -0
- package/bundle/node_modules/undici/lib/mock/mock-call-history.js +248 -0
- package/bundle/node_modules/undici/lib/mock/mock-client.js +64 -0
- package/bundle/node_modules/undici/lib/mock/mock-errors.js +19 -0
- package/bundle/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
- package/bundle/node_modules/undici/lib/mock/mock-pool.js +64 -0
- package/bundle/node_modules/undici/lib/mock/mock-symbols.js +31 -0
- package/bundle/node_modules/undici/lib/mock/mock-utils.js +433 -0
- package/bundle/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
- package/bundle/node_modules/undici/lib/util/cache.js +368 -0
- package/bundle/node_modules/undici/lib/util/date.js +259 -0
- package/bundle/node_modules/undici/lib/util/stats.js +32 -0
- package/bundle/node_modules/undici/lib/util/timers.js +423 -0
- package/bundle/node_modules/undici/lib/web/cache/cache.js +862 -0
- package/bundle/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
- package/bundle/node_modules/undici/lib/web/cache/util.js +45 -0
- package/bundle/node_modules/undici/lib/web/cookies/constants.js +12 -0
- package/bundle/node_modules/undici/lib/web/cookies/index.js +199 -0
- package/bundle/node_modules/undici/lib/web/cookies/parse.js +322 -0
- package/bundle/node_modules/undici/lib/web/cookies/util.js +282 -0
- package/bundle/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
- package/bundle/node_modules/undici/lib/web/eventsource/eventsource.js +484 -0
- package/bundle/node_modules/undici/lib/web/eventsource/util.js +37 -0
- package/bundle/node_modules/undici/lib/web/fetch/LICENSE +21 -0
- package/bundle/node_modules/undici/lib/web/fetch/body.js +532 -0
- package/bundle/node_modules/undici/lib/web/fetch/constants.js +131 -0
- package/bundle/node_modules/undici/lib/web/fetch/data-url.js +744 -0
- package/bundle/node_modules/undici/lib/web/fetch/dispatcher-weakref.js +46 -0
- package/bundle/node_modules/undici/lib/web/fetch/formdata-parser.js +501 -0
- package/bundle/node_modules/undici/lib/web/fetch/formdata.js +263 -0
- package/bundle/node_modules/undici/lib/web/fetch/global.js +40 -0
- package/bundle/node_modules/undici/lib/web/fetch/headers.js +719 -0
- package/bundle/node_modules/undici/lib/web/fetch/index.js +2258 -0
- package/bundle/node_modules/undici/lib/web/fetch/request.js +1099 -0
- package/bundle/node_modules/undici/lib/web/fetch/response.js +636 -0
- package/bundle/node_modules/undici/lib/web/fetch/util.js +1782 -0
- package/bundle/node_modules/undici/lib/web/fetch/webidl.js +740 -0
- package/bundle/node_modules/undici/lib/web/websocket/connection.js +325 -0
- package/bundle/node_modules/undici/lib/web/websocket/constants.js +126 -0
- package/bundle/node_modules/undici/lib/web/websocket/events.js +331 -0
- package/bundle/node_modules/undici/lib/web/websocket/frame.js +138 -0
- package/bundle/node_modules/undici/lib/web/websocket/permessage-deflate.js +70 -0
- package/bundle/node_modules/undici/lib/web/websocket/receiver.js +454 -0
- package/bundle/node_modules/undici/lib/web/websocket/sender.js +109 -0
- package/bundle/node_modules/undici/lib/web/websocket/stream/websocketerror.js +83 -0
- package/bundle/node_modules/undici/lib/web/websocket/stream/websocketstream.js +485 -0
- package/bundle/node_modules/undici/lib/web/websocket/util.js +338 -0
- package/bundle/node_modules/undici/lib/web/websocket/websocket.js +686 -0
- package/bundle/node_modules/undici/package.json +149 -0
- package/bundle/node_modules/undici/scripts/strip-comments.js +10 -0
- package/bundle/node_modules/undici/types/README.md +6 -0
- package/bundle/node_modules/undici/types/agent.d.ts +35 -0
- package/bundle/node_modules/undici/types/api.d.ts +43 -0
- package/bundle/node_modules/undici/types/balanced-pool.d.ts +29 -0
- package/bundle/node_modules/undici/types/cache-interceptor.d.ts +172 -0
- package/bundle/node_modules/undici/types/cache.d.ts +36 -0
- package/bundle/node_modules/undici/types/client-stats.d.ts +15 -0
- package/bundle/node_modules/undici/types/client.d.ts +110 -0
- package/bundle/node_modules/undici/types/connector.d.ts +34 -0
- package/bundle/node_modules/undici/types/content-type.d.ts +21 -0
- package/bundle/node_modules/undici/types/cookies.d.ts +30 -0
- package/bundle/node_modules/undici/types/diagnostics-channel.d.ts +66 -0
- package/bundle/node_modules/undici/types/dispatcher.d.ts +281 -0
- package/bundle/node_modules/undici/types/env-http-proxy-agent.d.ts +21 -0
- package/bundle/node_modules/undici/types/errors.d.ts +171 -0
- package/bundle/node_modules/undici/types/eventsource.d.ts +61 -0
- package/bundle/node_modules/undici/types/fetch.d.ts +210 -0
- package/bundle/node_modules/undici/types/formdata.d.ts +108 -0
- package/bundle/node_modules/undici/types/global-dispatcher.d.ts +9 -0
- package/bundle/node_modules/undici/types/global-origin.d.ts +7 -0
- package/bundle/node_modules/undici/types/h2c-client.d.ts +75 -0
- package/bundle/node_modules/undici/types/handlers.d.ts +15 -0
- package/bundle/node_modules/undici/types/header.d.ts +160 -0
- package/bundle/node_modules/undici/types/index.d.ts +75 -0
- package/bundle/node_modules/undici/types/interceptors.d.ts +34 -0
- package/bundle/node_modules/undici/types/mock-agent.d.ts +68 -0
- package/bundle/node_modules/undici/types/mock-call-history.d.ts +111 -0
- package/bundle/node_modules/undici/types/mock-client.d.ts +25 -0
- package/bundle/node_modules/undici/types/mock-errors.d.ts +12 -0
- package/bundle/node_modules/undici/types/mock-interceptor.d.ts +93 -0
- package/bundle/node_modules/undici/types/mock-pool.d.ts +25 -0
- package/bundle/node_modules/undici/types/patch.d.ts +29 -0
- package/bundle/node_modules/undici/types/pool-stats.d.ts +19 -0
- package/bundle/node_modules/undici/types/pool.d.ts +41 -0
- package/bundle/node_modules/undici/types/proxy-agent.d.ts +29 -0
- package/bundle/node_modules/undici/types/readable.d.ts +68 -0
- package/bundle/node_modules/undici/types/retry-agent.d.ts +8 -0
- package/bundle/node_modules/undici/types/retry-handler.d.ts +116 -0
- package/bundle/node_modules/undici/types/util.d.ts +18 -0
- package/bundle/node_modules/undici/types/utility.d.ts +7 -0
- package/bundle/node_modules/undici/types/webidl.d.ts +266 -0
- package/bundle/node_modules/undici/types/websocket.d.ts +184 -0
- package/bundle/sandbox-macos-permissive-closed.sb +26 -0
- package/bundle/sandbox-macos-permissive-open.sb +19 -0
- package/bundle/sandbox-macos-permissive-proxied.sb +31 -0
- package/bundle/sandbox-macos-restrictive-closed.sb +87 -0
- package/bundle/sandbox-macos-restrictive-open.sb +90 -0
- package/bundle/sandbox-macos-restrictive-proxied.sb +92 -0
- package/package.json +137 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# Cookie Handling
|
|
2
|
+
|
|
3
|
+
## `Cookie` interface
|
|
4
|
+
|
|
5
|
+
* **name** `string`
|
|
6
|
+
* **value** `string`
|
|
7
|
+
* **expires** `Date|number` (optional)
|
|
8
|
+
* **maxAge** `number` (optional)
|
|
9
|
+
* **domain** `string` (optional)
|
|
10
|
+
* **path** `string` (optional)
|
|
11
|
+
* **secure** `boolean` (optional)
|
|
12
|
+
* **httpOnly** `boolean` (optional)
|
|
13
|
+
* **sameSite** `'String'|'Lax'|'None'` (optional)
|
|
14
|
+
* **unparsed** `string[]` (optional) Left over attributes that weren't parsed.
|
|
15
|
+
|
|
16
|
+
## `deleteCookie(headers, name[, attributes])`
|
|
17
|
+
|
|
18
|
+
Sets the expiry time of the cookie to the unix epoch, causing browsers to delete it when received.
|
|
19
|
+
|
|
20
|
+
```js
|
|
21
|
+
import { deleteCookie, Headers } from 'undici'
|
|
22
|
+
|
|
23
|
+
const headers = new Headers()
|
|
24
|
+
deleteCookie(headers, 'name')
|
|
25
|
+
|
|
26
|
+
console.log(headers.get('set-cookie')) // name=; Expires=Thu, 01 Jan 1970 00:00:00 GMT
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Arguments:
|
|
30
|
+
|
|
31
|
+
* **headers** `Headers`
|
|
32
|
+
* **name** `string`
|
|
33
|
+
* **attributes** `{ path?: string, domain?: string }` (optional)
|
|
34
|
+
|
|
35
|
+
Returns: `void`
|
|
36
|
+
|
|
37
|
+
## `getCookies(headers)`
|
|
38
|
+
|
|
39
|
+
Parses the `Cookie` header and returns a list of attributes and values.
|
|
40
|
+
|
|
41
|
+
```js
|
|
42
|
+
import { getCookies, Headers } from 'undici'
|
|
43
|
+
|
|
44
|
+
const headers = new Headers({
|
|
45
|
+
cookie: 'get=cookies; and=attributes'
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
console.log(getCookies(headers)) // { get: 'cookies', and: 'attributes' }
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Arguments:
|
|
52
|
+
|
|
53
|
+
* **headers** `Headers`
|
|
54
|
+
|
|
55
|
+
Returns: `Record<string, string>`
|
|
56
|
+
|
|
57
|
+
## `getSetCookies(headers)`
|
|
58
|
+
|
|
59
|
+
Parses all `Set-Cookie` headers.
|
|
60
|
+
|
|
61
|
+
```js
|
|
62
|
+
import { getSetCookies, Headers } from 'undici'
|
|
63
|
+
|
|
64
|
+
const headers = new Headers({ 'set-cookie': 'undici=getSetCookies; Secure' })
|
|
65
|
+
|
|
66
|
+
console.log(getSetCookies(headers))
|
|
67
|
+
// [
|
|
68
|
+
// {
|
|
69
|
+
// name: 'undici',
|
|
70
|
+
// value: 'getSetCookies',
|
|
71
|
+
// secure: true
|
|
72
|
+
// }
|
|
73
|
+
// ]
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Arguments:
|
|
78
|
+
|
|
79
|
+
* **headers** `Headers`
|
|
80
|
+
|
|
81
|
+
Returns: `Cookie[]`
|
|
82
|
+
|
|
83
|
+
## `setCookie(headers, cookie)`
|
|
84
|
+
|
|
85
|
+
Appends a cookie to the `Set-Cookie` header.
|
|
86
|
+
|
|
87
|
+
```js
|
|
88
|
+
import { setCookie, Headers } from 'undici'
|
|
89
|
+
|
|
90
|
+
const headers = new Headers()
|
|
91
|
+
setCookie(headers, { name: 'undici', value: 'setCookie' })
|
|
92
|
+
|
|
93
|
+
console.log(headers.get('Set-Cookie')) // undici=setCookie
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Arguments:
|
|
97
|
+
|
|
98
|
+
* **headers** `Headers`
|
|
99
|
+
* **cookie** `Cookie`
|
|
100
|
+
|
|
101
|
+
Returns: `void`
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Debug
|
|
2
|
+
|
|
3
|
+
Undici (and subsenquently `fetch` and `websocket`) exposes a debug statement that can be enabled by setting `NODE_DEBUG` within the environment.
|
|
4
|
+
|
|
5
|
+
The flags available are:
|
|
6
|
+
|
|
7
|
+
## `undici`
|
|
8
|
+
|
|
9
|
+
This flag enables debug statements for the core undici library.
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
NODE_DEBUG=undici node script.js
|
|
13
|
+
|
|
14
|
+
UNDICI 16241: connecting to nodejs.org using https:h1
|
|
15
|
+
UNDICI 16241: connecting to nodejs.org using https:h1
|
|
16
|
+
UNDICI 16241: connected to nodejs.org using https:h1
|
|
17
|
+
UNDICI 16241: sending request to GET https://nodejs.org//
|
|
18
|
+
UNDICI 16241: received response to GET https://nodejs.org// - HTTP 307
|
|
19
|
+
UNDICI 16241: connecting to nodejs.org using https:h1
|
|
20
|
+
UNDICI 16241: trailers received from GET https://nodejs.org//
|
|
21
|
+
UNDICI 16241: connected to nodejs.org using https:h1
|
|
22
|
+
UNDICI 16241: sending request to GET https://nodejs.org//en
|
|
23
|
+
UNDICI 16241: received response to GET https://nodejs.org//en - HTTP 200
|
|
24
|
+
UNDICI 16241: trailers received from GET https://nodejs.org//en
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## `fetch`
|
|
28
|
+
|
|
29
|
+
This flag enables debug statements for the `fetch` API.
|
|
30
|
+
|
|
31
|
+
> **Note**: statements are pretty similar to the ones in the `undici` flag, but scoped to `fetch`
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
NODE_DEBUG=fetch node script.js
|
|
35
|
+
|
|
36
|
+
FETCH 16241: connecting to nodejs.org using https:h1
|
|
37
|
+
FETCH 16241: connecting to nodejs.org using https:h1
|
|
38
|
+
FETCH 16241: connected to nodejs.org using https:h1
|
|
39
|
+
FETCH 16241: sending request to GET https://nodejs.org//
|
|
40
|
+
FETCH 16241: received response to GET https://nodejs.org// - HTTP 307
|
|
41
|
+
FETCH 16241: connecting to nodejs.org using https:h1
|
|
42
|
+
FETCH 16241: trailers received from GET https://nodejs.org//
|
|
43
|
+
FETCH 16241: connected to nodejs.org using https:h1
|
|
44
|
+
FETCH 16241: sending request to GET https://nodejs.org//en
|
|
45
|
+
FETCH 16241: received response to GET https://nodejs.org//en - HTTP 200
|
|
46
|
+
FETCH 16241: trailers received from GET https://nodejs.org//en
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## `websocket`
|
|
50
|
+
|
|
51
|
+
This flag enables debug statements for the `Websocket` API.
|
|
52
|
+
|
|
53
|
+
> **Note**: statements can overlap with `UNDICI` ones if `undici` or `fetch` flag has been enabled as well.
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
NODE_DEBUG=websocket node script.js
|
|
57
|
+
|
|
58
|
+
WEBSOCKET 18309: connecting to echo.websocket.org using https:h1
|
|
59
|
+
WEBSOCKET 18309: connected to echo.websocket.org using https:h1
|
|
60
|
+
WEBSOCKET 18309: sending request to GET https://echo.websocket.org//
|
|
61
|
+
WEBSOCKET 18309: connection opened <ip_address>
|
|
62
|
+
```
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Diagnostics Channel Support
|
|
2
|
+
|
|
3
|
+
Stability: Experimental.
|
|
4
|
+
|
|
5
|
+
Undici supports the [`diagnostics_channel`](https://nodejs.org/api/diagnostics_channel.html) (currently available only on Node.js v16+).
|
|
6
|
+
It is the preferred way to instrument Undici and retrieve internal information.
|
|
7
|
+
|
|
8
|
+
The channels available are the following.
|
|
9
|
+
|
|
10
|
+
## `undici:request:create`
|
|
11
|
+
|
|
12
|
+
This message is published when a new outgoing request is created.
|
|
13
|
+
|
|
14
|
+
```js
|
|
15
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
16
|
+
|
|
17
|
+
diagnosticsChannel.channel('undici:request:create').subscribe(({ request }) => {
|
|
18
|
+
console.log('origin', request.origin)
|
|
19
|
+
console.log('completed', request.completed)
|
|
20
|
+
console.log('method', request.method)
|
|
21
|
+
console.log('path', request.path)
|
|
22
|
+
console.log('headers', request.headers) // array of strings, e.g: ['foo', 'bar']
|
|
23
|
+
request.addHeader('hello', 'world')
|
|
24
|
+
console.log('headers', request.headers) // e.g. ['foo', 'bar', 'hello', 'world']
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Note: a request is only loosely completed to a given socket.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## `undici:request:bodySent`
|
|
32
|
+
|
|
33
|
+
```js
|
|
34
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
35
|
+
|
|
36
|
+
diagnosticsChannel.channel('undici:request:bodySent').subscribe(({ request }) => {
|
|
37
|
+
// request is the same object undici:request:create
|
|
38
|
+
})
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## `undici:request:headers`
|
|
42
|
+
|
|
43
|
+
This message is published after the response headers have been received.
|
|
44
|
+
|
|
45
|
+
```js
|
|
46
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
47
|
+
|
|
48
|
+
diagnosticsChannel.channel('undici:request:headers').subscribe(({ request, response }) => {
|
|
49
|
+
// request is the same object undici:request:create
|
|
50
|
+
console.log('statusCode', response.statusCode)
|
|
51
|
+
console.log(response.statusText)
|
|
52
|
+
// response.headers are buffers.
|
|
53
|
+
console.log(response.headers.map((x) => x.toString()))
|
|
54
|
+
})
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## `undici:request:trailers`
|
|
58
|
+
|
|
59
|
+
This message is published after the response body and trailers have been received, i.e. the response has been completed.
|
|
60
|
+
|
|
61
|
+
```js
|
|
62
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
63
|
+
|
|
64
|
+
diagnosticsChannel.channel('undici:request:trailers').subscribe(({ request, trailers }) => {
|
|
65
|
+
// request is the same object undici:request:create
|
|
66
|
+
console.log('completed', request.completed)
|
|
67
|
+
// trailers are buffers.
|
|
68
|
+
console.log(trailers.map((x) => x.toString()))
|
|
69
|
+
})
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## `undici:request:error`
|
|
73
|
+
|
|
74
|
+
This message is published if the request is going to error, but it has not errored yet.
|
|
75
|
+
|
|
76
|
+
```js
|
|
77
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
78
|
+
|
|
79
|
+
diagnosticsChannel.channel('undici:request:error').subscribe(({ request, error }) => {
|
|
80
|
+
// request is the same object undici:request:create
|
|
81
|
+
})
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## `undici:client:sendHeaders`
|
|
85
|
+
|
|
86
|
+
This message is published right before the first byte of the request is written to the socket.
|
|
87
|
+
|
|
88
|
+
*Note*: It will publish the exact headers that will be sent to the server in raw format.
|
|
89
|
+
|
|
90
|
+
```js
|
|
91
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
92
|
+
|
|
93
|
+
diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(({ request, headers, socket }) => {
|
|
94
|
+
// request is the same object undici:request:create
|
|
95
|
+
console.log(`Full headers list ${headers.split('\r\n')}`);
|
|
96
|
+
})
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
## `undici:client:beforeConnect`
|
|
100
|
+
|
|
101
|
+
This message is published before creating a new connection for **any** request.
|
|
102
|
+
You can not assume that this event is related to any specific request.
|
|
103
|
+
|
|
104
|
+
```js
|
|
105
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
106
|
+
|
|
107
|
+
diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(({ connectParams, connector }) => {
|
|
108
|
+
// const { host, hostname, protocol, port, servername, version } = connectParams
|
|
109
|
+
// connector is a function that creates the socket
|
|
110
|
+
})
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## `undici:client:connected`
|
|
114
|
+
|
|
115
|
+
This message is published after a connection is established.
|
|
116
|
+
|
|
117
|
+
```js
|
|
118
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
119
|
+
|
|
120
|
+
diagnosticsChannel.channel('undici:client:connected').subscribe(({ socket, connectParams, connector }) => {
|
|
121
|
+
// const { host, hostname, protocol, port, servername, version } = connectParams
|
|
122
|
+
// connector is a function that creates the socket
|
|
123
|
+
})
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
## `undici:client:connectError`
|
|
127
|
+
|
|
128
|
+
This message is published if it did not succeed to create new connection
|
|
129
|
+
|
|
130
|
+
```js
|
|
131
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
132
|
+
|
|
133
|
+
diagnosticsChannel.channel('undici:client:connectError').subscribe(({ error, socket, connectParams, connector }) => {
|
|
134
|
+
// const { host, hostname, protocol, port, servername, version } = connectParams
|
|
135
|
+
// connector is a function that creates the socket
|
|
136
|
+
console.log(`Connect failed with ${error.message}`)
|
|
137
|
+
})
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## `undici:websocket:open`
|
|
141
|
+
|
|
142
|
+
This message is published after the client has successfully connected to a server.
|
|
143
|
+
|
|
144
|
+
```js
|
|
145
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
146
|
+
|
|
147
|
+
diagnosticsChannel.channel('undici:websocket:open').subscribe(({ address, protocol, extensions }) => {
|
|
148
|
+
console.log(address) // address, family, and port
|
|
149
|
+
console.log(protocol) // negotiated subprotocols
|
|
150
|
+
console.log(extensions) // negotiated extensions
|
|
151
|
+
})
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
## `undici:websocket:close`
|
|
155
|
+
|
|
156
|
+
This message is published after the connection has closed.
|
|
157
|
+
|
|
158
|
+
```js
|
|
159
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
160
|
+
|
|
161
|
+
diagnosticsChannel.channel('undici:websocket:close').subscribe(({ websocket, code, reason }) => {
|
|
162
|
+
console.log(websocket) // the WebSocket object
|
|
163
|
+
console.log(code) // the closing status code
|
|
164
|
+
console.log(reason) // the closing reason
|
|
165
|
+
})
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
## `undici:websocket:socket_error`
|
|
169
|
+
|
|
170
|
+
This message is published if the socket experiences an error.
|
|
171
|
+
|
|
172
|
+
```js
|
|
173
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
174
|
+
|
|
175
|
+
diagnosticsChannel.channel('undici:websocket:socket_error').subscribe((error) => {
|
|
176
|
+
console.log(error)
|
|
177
|
+
})
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
## `undici:websocket:ping`
|
|
181
|
+
|
|
182
|
+
This message is published after the client receives a ping frame, if the connection is not closing.
|
|
183
|
+
|
|
184
|
+
```js
|
|
185
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
186
|
+
|
|
187
|
+
diagnosticsChannel.channel('undici:websocket:ping').subscribe(({ payload }) => {
|
|
188
|
+
// a Buffer or undefined, containing the optional application data of the frame
|
|
189
|
+
console.log(payload)
|
|
190
|
+
})
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
## `undici:websocket:pong`
|
|
194
|
+
|
|
195
|
+
This message is published after the client receives a pong frame.
|
|
196
|
+
|
|
197
|
+
```js
|
|
198
|
+
import diagnosticsChannel from 'diagnostics_channel'
|
|
199
|
+
|
|
200
|
+
diagnosticsChannel.channel('undici:websocket:pong').subscribe(({ payload }) => {
|
|
201
|
+
// a Buffer or undefined, containing the optional application data of the frame
|
|
202
|
+
console.log(payload)
|
|
203
|
+
})
|
|
204
|
+
```
|