@contrast/esm-hooks 1.23.0 → 2.0.1

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/README.md CHANGED
@@ -1,21 +1,742 @@
1
- ### Using [ECMAScript Modules (ESM)](https://nodejs.org/docs/latest-v12.x/api/esm.html#esm_ecmascript_modules)
2
-
3
- > NOTE: ECMAScript instrumentation is experimental and Contrast requires at least Node version 14.15.0 for support.
4
-
5
- ECMAScript modules are the _new_ official standard format to package JavaScript
6
- code for reuse. ES Modules are loaded with the `import module from 'module'`
7
- syntax.
8
-
9
- When instrumenting an application that utilizes ECMAScript Modules, use the
10
- following method to start the application. This is the appropriate method for
11
- instrumenting an application that uses CJS, ESM, or a combination of both.
12
-
13
- ```
14
- Usage: node --experimental-loader @contrast/protect/lib/esm-loader.mjs app-main.mjs -- [app arguments]
15
-
16
- Options:
17
-
18
- -h, --help output usage information
19
- -V, --version output the version number
20
- -c, --configFile <path> path to agent config file
21
- ```
1
+ ### Using [ECMAScript Modules (ESM)](https://nodejs.org/docs/latest-v20.x/api/esm.html)
2
+
3
+ > NOTES: ECMAScript modules are the JavaScript standard for packaging code for reuse.
4
+ They have gone through many changes in Node.js and are still evolving; Contrast fully
5
+ supports ESM in node v16.17.0+.
6
+
7
+ ES modules are loaded with the `import module from 'module'` syntax or using the
8
+ `import()` function. Contrast supports both methods.
9
+
10
+ The following methods should be used to start *all* applications unless it is
11
+ certain that *no* ES modules will be loaded by the application or any of its
12
+ dependencies. Because it's hard to verify what all dependencies do, using the
13
+ following methods are the safest approach.
14
+
15
+ The following options are available for all methods of specifying the agent.
16
+
17
+ ```
18
+ Options:
19
+
20
+ -h, --help output usage information
21
+ -V, --version output the version number
22
+ -c, --configFile <path> specify the path to the agent config file
23
+ ```
24
+
25
+ #### Legacy Node version < 16.17.0
26
+
27
+ ```bash
28
+ # use the legacy method for starting the application
29
+ node -r @contrast/agent app-main.js [app arguments]
30
+ ```
31
+
32
+ #### ESM Support for Node version >= 16.17.0 and < 18.19.0
33
+
34
+ ```bash
35
+ # use --loader to start the application
36
+ node --loader @contrast/agent app-main.mjs [app arguments]
37
+ ```
38
+
39
+ #### ESM Support for Node version >= 18.19.0 and < 20.0.0 || >= 20.6.0
40
+
41
+ ```bash
42
+ # use --import to start the application
43
+ node --import @contrast/agent app-main.mjs [app arguments]
44
+ ```
45
+
46
+ > [!NOTE]
47
+ > Contrast does not support Node versions >= 20.0.0 and < 20.6.0.
48
+
49
+
50
+
51
+ When instrumenting an application that utilizes ECMAScript Modules, use the
52
+ following method to start the application. This is the appropriate method for
53
+ instrumenting an application that uses CJS, ESM, or a combination of both.
54
+
55
+ ```
56
+ Usage: node --experimental-loader @contrast/protect/lib/esm-loader.mjs app-main.mjs -- [app arguments]
57
+
58
+ Options:
59
+
60
+ -h, --help output usage information
61
+ -V, --version output the version number
62
+ -c, --configFile <path> path to agent config file
63
+ ```
64
+
65
+
66
+ ## Example log using CSI_HOOKS_LOG=9
67
+
68
+ The following illustrates:
69
+
70
+ - the first hooked module is the application's entry point (not yet tested via package.json specification)
71
+ - the application is then loaded
72
+ - the next hooked module is the first module imported by the application (node:child_process)
73
+ - (skip to LOAD of child_process with csi-flag=c)
74
+ - the resolve hook changed the path by adding the csi-flag=c
75
+ - the loader sees the flag, reads the redirect file, and returns that as the content of the module
76
+ - see [load function](../agent/lib/esm-hooks.mjs#L223)
77
+
78
+ ```
79
+ bruce:~/.../csi/node-mono$ CSI_HOOKS_LOG=9 node --import @contrast/agent/lib/esm
80
+ -loader.mjs test-integration-servers/express.mjs
81
+ ESM HOOK -> INIT
82
+ ESM HOOK(2) -> RESOLVE -> file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs from undefined
83
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
84
+ ESM HOOK(2) -> RESOLVE -> node:child_process from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
85
+ ESM HOOK(2) -> RESOLVE -> node:fs from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
86
+ ESM HOOK(2) -> RESOLVE -> node:module from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
87
+ ESM HOOK(2) -> RESOLVE -> ./util/json-traverse.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
88
+ ESM HOOK(2) -> RESOLVE -> ./skeleton.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
89
+ ESM HOOK(2) -> RESOLVE -> @contrast/distringuish from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
90
+ ESM HOOK(2) -> RESOLVE -> ./util/stash.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
91
+ ESM HOOK(2) -> RESOLVE -> express from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
92
+ ESM HOOK(2) -> RESOLVE -> body-parser from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
93
+ ESM HOOK(2) -> RESOLVE -> multer from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
94
+ ESM HOOK(2) -> RESOLVE -> cookie-parser from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
95
+ ESM HOOK(2) -> RESOLVE -> ./routes/child_process.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
96
+ ESM HOOK(2) -> RESOLVE -> ./routes/mongo.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
97
+ ESM HOOK(2) -> RESOLVE -> ./routes/ssjs.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
98
+ ESM HOOK(2) -> RESOLVE -> ./routes/xss.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
99
+ ESM HOOK(2) -> RESOLVE -> ./routes/fs.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
100
+ ESM HOOK(2) -> RESOLVE -> ./routes/cookies.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
101
+ ESM HOOK(2) -> RESOLVE -> ./routes/ufu.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
102
+ ESM HOOK(2) -> RESOLVE -> ./routes/meta.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
103
+ ESM HOOK(2) -> RESOLVE -> ./routes/raw.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
104
+ ESM HOOK(2) -> RESOLVE -> ./routes/text.js from file:///home/bruce/github/csi/node-mono/test-integration-servers/express.mjs
105
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/builtin/child_process.mjs?csi-flag=c
106
+ ESM HOOK(2) -> LOAD -> CSI FLAG /home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/builtin/child_process.mjs
107
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/builtin/fs.mjs?csi-flag=c
108
+ ESM HOOK(2) -> LOAD -> CSI FLAG /home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/builtin/fs.mjs
109
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/util/json-traverse.js
110
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/skeleton.js
111
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/node_modules/@contrast/distringuish/index.js
112
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/util/stash.js
113
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/express.mjs?csi-flag=c
114
+ ESM HOOK(2) -> LOAD -> CSI FLAG /home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/express.mjs
115
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/body-parser.mjs?csi-flag=c
116
+ ESM HOOK(2) -> LOAD -> CSI FLAG /home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/body-parser.mjs
117
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/multer.mjs?csi-flag=c
118
+ ESM HOOK(2) -> LOAD -> CSI FLAG /home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/multer.mjs
119
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/cookie-parser.mjs?csi-flag=c
120
+ ESM HOOK(2) -> LOAD -> CSI FLAG /home/bruce/github/csi/node-mono/esm-hooks/lib/redirects/cjs/cookie-parser.mjs
121
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/child_process.js
122
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/mongo.js
123
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/ssjs.js
124
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/xss.js
125
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/fs.js
126
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/cookies.js
127
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/ufu.js
128
+ CJS(0) -> _load() node:child_process
129
+ CJS(0) -> _load() node:fs
130
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/util/json-traverse.js
131
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/skeleton.js
132
+ CJS(0) -> _load() http
133
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/util/stash.js
134
+ CJS(0) -> _load() @contrast/stash
135
+ CJS(0) -> _load() node-gyp-build
136
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/stash/package.json
137
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/stash/prebuilds/linux-x64/node.abi115.glibc.node
138
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/child_process.js
139
+ CJS(0) -> _load() util
140
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/mongo.js
141
+ CJS(0) -> _load() ../data/marsdb
142
+ CJS(0) -> _load() marsdb
143
+ CJS(0) -> _load() ./dist/AsyncEventEmitter
144
+ CJS(0) -> _load() eventemitter3
145
+ CJS(0) -> _load() ./dist/Collection
146
+ CJS(0) -> _load() fast.js/map
147
+ CJS(0) -> _load() ./array/map
148
+ CJS(0) -> _load() ../function/bindInternal3
149
+ CJS(0) -> _load() ./object/map
150
+ CJS(0) -> _load() ../function/bindInternal3
151
+ CJS(0) -> _load() fast.js/forEach
152
+ CJS(0) -> _load() ./array/forEach
153
+ CJS(0) -> _load() ../function/bindInternal3
154
+ CJS(0) -> _load() ./object/forEach
155
+ CJS(0) -> _load() ../function/bindInternal3
156
+ CJS(0) -> _load() check-types
157
+ CJS(0) -> _load() ./AsyncEventEmitter
158
+ CJS(0) -> _load() ./IndexManager
159
+ CJS(0) -> _load() fast.js/function/bind
160
+ CJS(0) -> _load() ./applyWithContext
161
+ CJS(0) -> _load() ./applyNoContext
162
+ CJS(0) -> _load() fast.js/object/keys
163
+ CJS(0) -> _load() fast.js/forEach
164
+ CJS(0) -> _load() fast.js/map
165
+ CJS(0) -> _load() invariant
166
+ CJS(0) -> _load() ./PromiseQueue
167
+ CJS(0) -> _load() fast.js/function/try
168
+ CJS(0) -> _load() double-ended-queue
169
+ CJS(0) -> _load() ./CollectionIndex
170
+ CJS(0) -> _load() invariant
171
+ CJS(0) -> _load() ./DocumentRetriver
172
+ CJS(0) -> _load() check-types
173
+ CJS(0) -> _load() fast.js/map
174
+ CJS(0) -> _load() fast.js/array/filter
175
+ CJS(0) -> _load() ../function/bindInternal3
176
+ CJS(0) -> _load() ./Document
177
+ CJS(0) -> _load() check-types
178
+ CJS(0) -> _load() fast.js/forEach
179
+ CJS(0) -> _load() fast.js/object/keys
180
+ CJS(0) -> _load() ./EJSON
181
+ CJS(0) -> _load() ./Base64
182
+ CJS(0) -> _load() fast.js/array/some
183
+ CJS(0) -> _load() ../function/bindInternal3
184
+ CJS(0) -> _load() check-types
185
+ CJS(0) -> _load() fast.js/object/keys
186
+ CJS(0) -> _load() fast.js/forEach
187
+ CJS(0) -> _load() ./StorageManager
188
+ CJS(0) -> _load() fast.js/object/keys
189
+ CJS(0) -> _load() eventemitter3
190
+ CJS(0) -> _load() ./PromiseQueue
191
+ CJS(0) -> _load() ./EJSON
192
+ CJS(0) -> _load() ./CollectionDelegate
193
+ CJS(0) -> _load() fast.js/map
194
+ CJS(0) -> _load() ./DocumentModifier
195
+ CJS(0) -> _load() check-types
196
+ CJS(0) -> _load() fast.js/object/assign
197
+ CJS(0) -> _load() fast.js/forEach
198
+ CJS(0) -> _load() fast.js/array/every
199
+ CJS(0) -> _load() ../function/bindInternal3
200
+ CJS(0) -> _load() ./EJSON
201
+ CJS(0) -> _load() ./Random
202
+ CJS(0) -> _load() fast.js/function/try
203
+ CJS(0) -> _load() invariant
204
+ CJS(0) -> _load() ./DocumentMatcher
205
+ CJS(0) -> _load() check-types
206
+ CJS(0) -> _load() fast.js/forEach
207
+ CJS(0) -> _load() fast.js/object/keys
208
+ CJS(0) -> _load() fast.js/map
209
+ CJS(0) -> _load() fast.js/array/some
210
+ CJS(0) -> _load() fast.js/array/every
211
+ CJS(0) -> _load() fast.js/array/indexOf
212
+ CJS(0) -> _load() geojson-utils
213
+ CJS(0) -> _load() ./EJSON
214
+ CJS(0) -> _load() ./Document
215
+ CJS(0) -> _load() ./DocumentSorter
216
+ CJS(0) -> _load() check-types
217
+ CJS(0) -> _load() fast.js/forEach
218
+ CJS(0) -> _load() fast.js/array/every
219
+ CJS(0) -> _load() fast.js/map
220
+ CJS(0) -> _load() fast.js/array/indexOf
221
+ CJS(0) -> _load() fast.js/object/keys
222
+ CJS(0) -> _load() ./DocumentMatcher
223
+ CJS(0) -> _load() ./Document
224
+ CJS(0) -> _load() ./Document
225
+ CJS(0) -> _load() ./CursorObservable
226
+ CJS(0) -> _load() fast.js/function/bind
227
+ CJS(0) -> _load() check-types
228
+ CJS(0) -> _load() fast.js/object/values
229
+ CJS(0) -> _load() fast.js/map
230
+ CJS(0) -> _load() ./Cursor
231
+ CJS(0) -> _load() fast.js/forEach
232
+ CJS(0) -> _load() fast.js/object/assign
233
+ CJS(0) -> _load() fast.js/object/keys
234
+ CJS(0) -> _load() fast.js/map
235
+ CJS(0) -> _load() ./AsyncEventEmitter
236
+ CJS(0) -> _load() invariant
237
+ CJS(0) -> _load() ./DocumentRetriver
238
+ CJS(0) -> _load() ./DocumentMatcher
239
+ CJS(0) -> _load() ./DocumentSorter
240
+ CJS(0) -> _load() ./DocumentProjector
241
+ CJS(0) -> _load() check-types
242
+ CJS(0) -> _load() fast.js/forEach
243
+ CJS(0) -> _load() fast.js/object/keys
244
+ CJS(0) -> _load() fast.js/object/assign
245
+ CJS(0) -> _load() fast.js/array/every
246
+ CJS(0) -> _load() fast.js/array/filter
247
+ CJS(0) -> _load() fast.js/map
248
+ CJS(0) -> _load() fast.js/array/indexOf
249
+ CJS(0) -> _load() ./EJSON
250
+ CJS(0) -> _load() ./Document
251
+ CJS(0) -> _load() ./EJSON
252
+ CJS(0) -> _load() ./cursor-processors/filter
253
+ CJS(0) -> _load() invariant
254
+ CJS(0) -> _load() fast.js/array/filter
255
+ CJS(0) -> _load() ./cursor-processors/sortFunc
256
+ CJS(0) -> _load() invariant
257
+ CJS(0) -> _load() ./cursor-processors/map
258
+ CJS(0) -> _load() fast.js/map
259
+ CJS(0) -> _load() invariant
260
+ CJS(0) -> _load() ./cursor-processors/aggregate
261
+ CJS(0) -> _load() invariant
262
+ CJS(0) -> _load() ./cursor-processors/reduce
263
+ CJS(0) -> _load() fast.js/array/reduce
264
+ CJS(0) -> _load() ../function/bindInternal4
265
+ CJS(0) -> _load() invariant
266
+ CJS(0) -> _load() ./cursor-processors/join
267
+ CJS(0) -> _load() check-types
268
+ CJS(0) -> _load() invariant
269
+ CJS(0) -> _load() ./joinObj
270
+ CJS(0) -> _load() check-types
271
+ CJS(0) -> _load() fast.js/forEach
272
+ CJS(0) -> _load() fast.js/map
273
+ CJS(0) -> _load() fast.js/array/filter
274
+ CJS(0) -> _load() fast.js/array/reduce
275
+ CJS(0) -> _load() fast.js/object/keys
276
+ CJS(0) -> _load() ../Collection
277
+ CJS(0) -> _load() invariant
278
+ CJS(0) -> _load() ./joinAll
279
+ CJS(0) -> _load() check-types
280
+ CJS(0) -> _load() fast.js/map
281
+ CJS(0) -> _load() fast.js/function/bind
282
+ CJS(0) -> _load() invariant
283
+ CJS(0) -> _load() ../DocumentModifier
284
+ CJS(0) -> _load() ../DocumentMatcher
285
+ CJS(0) -> _load() ../Document
286
+ CJS(0) -> _load() ./joinEach
287
+ CJS(0) -> _load() check-types
288
+ CJS(0) -> _load() fast.js/map
289
+ CJS(0) -> _load() invariant
290
+ CJS(0) -> _load() ./joinAll
291
+ CJS(0) -> _load() ./joinAll
292
+ CJS(0) -> _load() ./cursor-processors/joinEach
293
+ CJS(0) -> _load() ./cursor-processors/joinAll
294
+ CJS(0) -> _load() ./cursor-processors/joinObj
295
+ CJS(0) -> _load() ./cursor-processors/ifNotEmpty
296
+ CJS(0) -> _load() check-types
297
+ CJS(0) -> _load() ./EJSON
298
+ CJS(0) -> _load() ./PromiseQueue
299
+ CJS(0) -> _load() ./debounce
300
+ CJS(0) -> _load() ./ShortIdGenerator
301
+ CJS(0) -> _load() ./Random
302
+ CJS(0) -> _load() ./EJSON
303
+ CJS(0) -> _load() ./dist/CursorObservable
304
+ CJS(0) -> _load() ./dist/debounce
305
+ CJS(0) -> _load() ./dist/StorageManager
306
+ CJS(0) -> _load() ./dist/Random
307
+ CJS(0) -> _load() ./dist/EJSON
308
+ CJS(0) -> _load() ./dist/Base64
309
+ CJS(0) -> _load() ./dist/PromiseQueue
310
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/ssjs.js
311
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/xss.js
312
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/fs.js
313
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/cookies.js
314
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/ufu.js
315
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/meta.js
316
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/raw.js
317
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/test-integration-servers/routes/text.js
318
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/meta.js
319
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/raw.js
320
+ ESM HOOK(2) -> LOAD file:///home/bruce/github/csi/node-mono/test-integration-servers/routes/text.js
321
+ CJS(0) -> _load() express
322
+ CJS(0) -> _load() ./lib/express
323
+ CJS(0) -> _load() body-parser
324
+ CJS(0) -> _load() depd
325
+ CJS(0) -> _load() path
326
+ CJS(0) -> _load() ./lib/types/json
327
+ CJS(0) -> _load() bytes
328
+ CJS(0) -> _load() content-type
329
+ CJS(0) -> _load() http-errors
330
+ CJS(0) -> _load() depd
331
+ CJS(0) -> _load() setprototypeof
332
+ CJS(0) -> _load() statuses
333
+ CJS(0) -> _load() ./codes.json
334
+ CJS(0) -> _load() inherits
335
+ CJS(0) -> _load() util
336
+ CJS(0) -> _load() toidentifier
337
+ CJS(0) -> _load() debug
338
+ CJS(0) -> _load() ./node.js
339
+ CJS(0) -> _load() tty
340
+ CJS(0) -> _load() util
341
+ CJS(0) -> _load() ./debug
342
+ CJS(0) -> _load() ms
343
+ CJS(0) -> _load() ../read
344
+ CJS(0) -> _load() http-errors
345
+ CJS(0) -> _load() destroy
346
+ CJS(0) -> _load() events
347
+ CJS(0) -> _load() fs
348
+ CJS(0) -> _load() stream
349
+ CJS(0) -> _load() zlib
350
+ CJS(0) -> _load() raw-body
351
+ CJS(0) -> _load() async_hooks
352
+ CJS(0) -> _load() bytes
353
+ CJS(0) -> _load() http-errors
354
+ CJS(0) -> _load() iconv-lite
355
+ CJS(0) -> _load() safer-buffer
356
+ CJS(0) -> _load() buffer
357
+ CJS(0) -> _load() ./bom-handling
358
+ CJS(0) -> _load() ./streams
359
+ CJS(0) -> _load() buffer
360
+ CJS(0) -> _load() stream
361
+ CJS(0) -> _load() ./extend-node
362
+ CJS(0) -> _load() buffer
363
+ CJS(0) -> _load() unpipe
364
+ CJS(0) -> _load() iconv-lite
365
+ CJS(0) -> _load() on-finished
366
+ CJS(0) -> _load() async_hooks
367
+ CJS(0) -> _load() ee-first
368
+ CJS(0) -> _load() unpipe
369
+ CJS(0) -> _load() zlib
370
+ CJS(0) -> _load() type-is
371
+ CJS(0) -> _load() media-typer
372
+ CJS(0) -> _load() mime-types
373
+ CJS(0) -> _load() ./lib/types/raw
374
+ CJS(0) -> _load() bytes
375
+ CJS(0) -> _load() debug
376
+ CJS(0) -> _load() ../read
377
+ CJS(0) -> _load() type-is
378
+ CJS(0) -> _load() ./lib/types/text
379
+ CJS(0) -> _load() bytes
380
+ CJS(0) -> _load() content-type
381
+ CJS(0) -> _load() debug
382
+ CJS(0) -> _load() ../read
383
+ CJS(0) -> _load() type-is
384
+ CJS(0) -> _load() ./lib/types/urlencoded
385
+ CJS(0) -> _load() bytes
386
+ CJS(0) -> _load() content-type
387
+ CJS(0) -> _load() http-errors
388
+ CJS(0) -> _load() debug
389
+ CJS(0) -> _load() depd
390
+ CJS(0) -> _load() ../read
391
+ CJS(0) -> _load() type-is
392
+ CJS(0) -> _load() events
393
+ CJS(0) -> _load() merge-descriptors
394
+ CJS(0) -> _load() ./application
395
+ CJS(0) -> _load() finalhandler
396
+ CJS(0) -> _load() debug
397
+ CJS(0) -> _load() ./node.js
398
+ CJS(0) -> _load() tty
399
+ CJS(0) -> _load() util
400
+ CJS(0) -> _load() ./debug
401
+ CJS(0) -> _load() ms
402
+ CJS(0) -> _load() encodeurl
403
+ CJS(0) -> _load() escape-html
404
+ CJS(0) -> _load() on-finished
405
+ CJS(0) -> _load() parseurl
406
+ CJS(0) -> _load() url
407
+ CJS(0) -> _load() statuses
408
+ CJS(0) -> _load() unpipe
409
+ CJS(0) -> _load() ./router
410
+ CJS(0) -> _load() ./route
411
+ CJS(0) -> _load() debug
412
+ CJS(0) -> _load() ./node.js
413
+ CJS(0) -> _load() tty
414
+ CJS(0) -> _load() util
415
+ CJS(0) -> _load() ./debug
416
+ CJS(0) -> _load() ms
417
+ CJS(0) -> _load() array-flatten
418
+ CJS(0) -> _load() ./layer
419
+ CJS(0) -> _load() path-to-regexp
420
+ CJS(0) -> _load() debug
421
+ CJS(0) -> _load() methods
422
+ CJS(0) -> _load() http
423
+ CJS(0) -> _load() ./layer
424
+ CJS(0) -> _load() methods
425
+ CJS(0) -> _load() utils-merge
426
+ CJS(0) -> _load() debug
427
+ CJS(0) -> _load() depd
428
+ CJS(0) -> _load() array-flatten
429
+ CJS(0) -> _load() parseurl
430
+ CJS(0) -> _load() setprototypeof
431
+ CJS(0) -> _load() methods
432
+ CJS(0) -> _load() ./middleware/init
433
+ CJS(0) -> _load() setprototypeof
434
+ CJS(0) -> _load() ./middleware/query
435
+ CJS(0) -> _load() utils-merge
436
+ CJS(0) -> _load() parseurl
437
+ CJS(0) -> _load() qs
438
+ CJS(0) -> _load() ./stringify
439
+ CJS(0) -> _load() side-channel
440
+ CJS(0) -> _load() get-intrinsic
441
+ CJS(0) -> _load() has-symbols
442
+ CJS(0) -> _load() ./shams
443
+ CJS(0) -> _load() has-proto
444
+ CJS(0) -> _load() function-bind
445
+ CJS(0) -> _load() ./implementation
446
+ CJS(0) -> _load() has
447
+ CJS(0) -> _load() function-bind
448
+ CJS(0) -> _load() call-bind/callBound
449
+ CJS(0) -> _load() get-intrinsic
450
+ CJS(0) -> _load() ./
451
+ CJS(0) -> _load() function-bind
452
+ CJS(0) -> _load() get-intrinsic
453
+ CJS(0) -> _load() object-inspect
454
+ CJS(0) -> _load() ./util.inspect
455
+ CJS(0) -> _load() util
456
+ CJS(0) -> _load() ./utils
457
+ CJS(0) -> _load() ./formats
458
+ CJS(0) -> _load() ./formats
459
+ CJS(0) -> _load() ./parse
460
+ CJS(0) -> _load() ./utils
461
+ CJS(0) -> _load() ./formats
462
+ CJS(0) -> _load() debug
463
+ CJS(0) -> _load() ./view
464
+ CJS(0) -> _load() debug
465
+ CJS(0) -> _load() path
466
+ CJS(0) -> _load() fs
467
+ CJS(0) -> _load() http
468
+ CJS(0) -> _load() ./utils
469
+ CJS(0) -> _load() safe-buffer
470
+ CJS(0) -> _load() buffer
471
+ CJS(0) -> _load() content-disposition
472
+ CJS(0) -> _load() path
473
+ CJS(0) -> _load() safe-buffer
474
+ CJS(0) -> _load() content-type
475
+ CJS(0) -> _load() depd
476
+ CJS(0) -> _load() array-flatten
477
+ CJS(0) -> _load() send
478
+ CJS(0) -> _load() http-errors
479
+ CJS(0) -> _load() debug
480
+ CJS(0) -> _load() ./node.js
481
+ CJS(0) -> _load() tty
482
+ CJS(0) -> _load() util
483
+ CJS(0) -> _load() ./debug
484
+ CJS(0) -> _load() ms
485
+ CJS(0) -> _load() depd
486
+ CJS(0) -> _load() destroy
487
+ CJS(0) -> _load() encodeurl
488
+ CJS(0) -> _load() escape-html
489
+ CJS(0) -> _load() etag
490
+ CJS(0) -> _load() crypto
491
+ CJS(0) -> _load() fs
492
+ CJS(0) -> _load() fresh
493
+ CJS(0) -> _load() fs
494
+ CJS(0) -> _load() mime
495
+ CJS(0) -> _load() path
496
+ CJS(0) -> _load() fs
497
+ CJS(0) -> _load() ./types.json
498
+ CJS(0) -> _load() ms
499
+ CJS(0) -> _load() on-finished
500
+ CJS(0) -> _load() range-parser
501
+ CJS(0) -> _load() path
502
+ CJS(0) -> _load() statuses
503
+ CJS(0) -> _load() stream
504
+ CJS(0) -> _load() util
505
+ CJS(0) -> _load() etag
506
+ CJS(0) -> _load() proxy-addr
507
+ CJS(0) -> _load() forwarded
508
+ CJS(0) -> _load() ipaddr.js
509
+ CJS(0) -> _load() qs
510
+ CJS(0) -> _load() querystring
511
+ CJS(0) -> _load() ./utils
512
+ CJS(0) -> _load() ./utils
513
+ CJS(0) -> _load() depd
514
+ CJS(0) -> _load() array-flatten
515
+ CJS(0) -> _load() utils-merge
516
+ CJS(0) -> _load() path
517
+ CJS(0) -> _load() setprototypeof
518
+ CJS(0) -> _load() ./router/route
519
+ CJS(0) -> _load() ./router
520
+ CJS(0) -> _load() ./request
521
+ CJS(0) -> _load() accepts
522
+ CJS(0) -> _load() negotiator
523
+ CJS(0) -> _load() ./lib/charset
524
+ CJS(0) -> _load() ./lib/encoding
525
+ CJS(0) -> _load() ./lib/language
526
+ CJS(0) -> _load() ./lib/mediaType
527
+ CJS(0) -> _load() mime-types
528
+ CJS(0) -> _load() depd
529
+ CJS(0) -> _load() net
530
+ CJS(0) -> _load() type-is
531
+ CJS(0) -> _load() http
532
+ CJS(0) -> _load() fresh
533
+ CJS(0) -> _load() range-parser
534
+ CJS(0) -> _load() parseurl
535
+ CJS(0) -> _load() proxy-addr
536
+ CJS(0) -> _load() ./response
537
+ CJS(0) -> _load() safe-buffer
538
+ CJS(0) -> _load() content-disposition
539
+ CJS(0) -> _load() http-errors
540
+ CJS(0) -> _load() depd
541
+ CJS(0) -> _load() encodeurl
542
+ CJS(0) -> _load() escape-html
543
+ CJS(0) -> _load() http
544
+ CJS(0) -> _load() ./utils
545
+ CJS(0) -> _load() on-finished
546
+ CJS(0) -> _load() path
547
+ CJS(0) -> _load() statuses
548
+ CJS(0) -> _load() utils-merge
549
+ CJS(0) -> _load() cookie-signature
550
+ CJS(0) -> _load() crypto
551
+ CJS(0) -> _load() ./utils
552
+ CJS(0) -> _load() ./utils
553
+ CJS(0) -> _load() ./utils
554
+ CJS(0) -> _load() cookie
555
+ CJS(0) -> _load() send
556
+ CJS(0) -> _load() vary
557
+ CJS(0) -> _load() ./middleware/query
558
+ CJS(0) -> _load() serve-static
559
+ CJS(0) -> _load() encodeurl
560
+ CJS(0) -> _load() escape-html
561
+ CJS(0) -> _load() parseurl
562
+ CJS(0) -> _load() path
563
+ CJS(0) -> _load() send
564
+ CJS(0) -> _load() url
565
+ CJS(0) -> _load() body-parser
566
+ CJS(0) -> _load() multer
567
+ CJS(0) -> _load() ./lib/make-middleware
568
+ CJS(0) -> _load() type-is
569
+ CJS(0) -> _load() busboy
570
+ CJS(0) -> _load() ./utils.js
571
+ CJS(0) -> _load() ./types/multipart
572
+ CJS(0) -> _load() stream
573
+ CJS(0) -> _load() streamsearch
574
+ CJS(0) -> _load() ../utils.js
575
+ CJS(0) -> _load() ./types/urlencoded
576
+ CJS(0) -> _load() stream
577
+ CJS(0) -> _load() ../utils.js
578
+ CJS(0) -> _load() xtend
579
+ CJS(0) -> _load() append-field
580
+ CJS(0) -> _load() ./lib/parse-path
581
+ CJS(0) -> _load() ./lib/set-value
582
+ CJS(0) -> _load() ./counter
583
+ CJS(0) -> _load() events
584
+ CJS(0) -> _load() ./multer-error
585
+ CJS(0) -> _load() util
586
+ CJS(0) -> _load() ./file-appender
587
+ CJS(0) -> _load() object-assign
588
+ CJS(0) -> _load() ./remove-uploaded-files
589
+ CJS(0) -> _load() ./storage/disk
590
+ CJS(0) -> _load() fs
591
+ CJS(0) -> _load() os
592
+ CJS(0) -> _load() path
593
+ CJS(0) -> _load() crypto
594
+ CJS(0) -> _load() mkdirp
595
+ CJS(0) -> _load() path
596
+ CJS(0) -> _load() fs
597
+ CJS(0) -> _load() ./storage/memory
598
+ CJS(0) -> _load() concat-stream
599
+ CJS(0) -> _load() readable-stream
600
+ CJS(0) -> _load() stream
601
+ CJS(0) -> _load() ./lib/_stream_readable.js
602
+ CJS(0) -> _load() process-nextick-args
603
+ CJS(0) -> _load() isarray
604
+ CJS(0) -> _load() events
605
+ CJS(0) -> _load() ./internal/streams/stream
606
+ CJS(0) -> _load() stream
607
+ CJS(0) -> _load() safe-buffer
608
+ CJS(0) -> _load() buffer
609
+ CJS(0) -> _load() core-util-is
610
+ CJS(0) -> _load() buffer
611
+ CJS(0) -> _load() inherits
612
+ CJS(0) -> _load() util
613
+ CJS(0) -> _load() ./internal/streams/BufferList
614
+ CJS(0) -> _load() safe-buffer
615
+ CJS(0) -> _load() util
616
+ CJS(0) -> _load() ./internal/streams/destroy
617
+ CJS(0) -> _load() process-nextick-args
618
+ CJS(0) -> _load() ./lib/_stream_writable.js
619
+ CJS(0) -> _load() process-nextick-args
620
+ CJS(0) -> _load() core-util-is
621
+ CJS(0) -> _load() inherits
622
+ CJS(0) -> _load() util-deprecate
623
+ CJS(0) -> _load() util
624
+ CJS(0) -> _load() ./internal/streams/stream
625
+ CJS(0) -> _load() safe-buffer
626
+ CJS(0) -> _load() ./internal/streams/destroy
627
+ CJS(0) -> _load() ./lib/_stream_duplex.js
628
+ CJS(0) -> _load() process-nextick-args
629
+ CJS(0) -> _load() core-util-is
630
+ CJS(0) -> _load() inherits
631
+ CJS(0) -> _load() ./_stream_readable
632
+ CJS(0) -> _load() ./_stream_writable
633
+ CJS(0) -> _load() ./lib/_stream_transform.js
634
+ CJS(0) -> _load() ./_stream_duplex
635
+ CJS(0) -> _load() core-util-is
636
+ CJS(0) -> _load() inherits
637
+ CJS(0) -> _load() ./lib/_stream_passthrough.js
638
+ CJS(0) -> _load() ./_stream_transform
639
+ CJS(0) -> _load() core-util-is
640
+ CJS(0) -> _load() inherits
641
+ CJS(0) -> _load() inherits
642
+ CJS(0) -> _load() buffer-from
643
+ CJS(0) -> _load() ./lib/multer-error
644
+ CJS(0) -> _load() cookie-parser
645
+ CJS(0) -> _load() cookie
646
+ CJS(0) -> _load() cookie-signature
647
+ CJS(0) -> _load() querystring
648
+ CJS(0) -> _load() qs
649
+ CJS(0) -> _load() crypto
650
+ CJS(0) -> _load() crypto
651
+ CJS(0) -> _load() crypto
652
+ CJS(0) -> _load() crypto
653
+ CJS(0) -> _load() http
654
+ 10293
655
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/semver/package.json)
656
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/semver/node_modules/lru-cache/package.json)
657
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/semver/node_modules/yallist/package.json)
658
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/yaml/package.json)
659
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/semver/package.json
660
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/pino/package.json)
661
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/pino/node_modules/pino-std-serializers/package.json)
662
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/semver/node_modules/lru-cache/package.json
663
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/fast-redact/package.json)
664
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/semver/node_modules/yallist/package.json
665
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/quick-format-unescaped/package.json)
666
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/pino/node_modules/thread-stream/package.json)
667
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/safe-stable-stringify/package.json)
668
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/@contrast/require-hook/package.json)
669
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/node-gyp-build/package.json)
670
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/yaml/package.json
671
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/@swc/core/package.json)
672
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/reporter/node_modules/sonic-boom/package.json)
673
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/reporter/node_modules/axios/package.json)
674
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/follow-redirects/package.json)
675
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/mime-types/package.json)
676
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/pino/package.json
677
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/pino/node_modules/pino-std-serializers/package.json
678
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/crc-32/package.json)
679
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/fast-redact/package.json
680
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/quick-format-unescaped/package.json
681
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/pino/node_modules/thread-stream/package.json
682
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/safe-stable-stringify/package.json
683
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/require-hook/package.json
684
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/node-gyp-build/package.json
685
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@swc/core/package.json
686
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/reporter/node_modules/sonic-boom/package.json
687
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/reporter/node_modules/axios/package.json
688
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/follow-redirects/package.json
689
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/mime-types/package.json
690
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/crc-32/package.json
691
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/@contrast/code-events/package.json)
692
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/@contrast/agent-lib/package.json)
693
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/detect-libc/package.json)
694
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/protect/node_modules/ipaddr.js/package.json)
695
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/parent-package-json/package.json)
696
+ CJS(init 2) -> _load(/home/bruce/github/csi/node-mono/node_modules/on-exit-leak-free/package.json)
697
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/code-events/package.json
698
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/agent-lib/package.json
699
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/detect-libc/package.json
700
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/protect/node_modules/ipaddr.js/package.json
701
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/parent-package-json/package.json
702
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/on-exit-leak-free/package.json
703
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/stash/package.json
704
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/marsdb/package.json
705
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/check-types/package.json
706
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/fast.js/package.json
707
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/depd/package.json
708
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/body-parser/package.json
709
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/statuses/package.json
710
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/http-errors/package.json
711
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/toidentifier/package.json
712
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/body-parser/node_modules/debug/package.json
713
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/raw-body/package.json
714
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/on-finished/package.json
715
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/finalhandler/node_modules/debug/package.json
716
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/express/node_modules/debug/package.json
717
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/methods/package.json
718
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/has-symbols/package.json
719
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/has-proto/package.json
720
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/get-intrinsic/package.json
721
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/call-bind/package.json
722
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/object-inspect/package.json
723
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/safe-buffer/package.json
724
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/send/node_modules/debug/package.json
725
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/mime/package.json
726
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/ipaddr.js/package.json
727
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/express/package.json
728
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/object-assign/package.json
729
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/concat-stream/node_modules/safe-buffer/package.json
730
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/multer/package.json
731
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/mkdirp/package.json
732
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/cookie-parser/package.json
733
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/merge-descriptors/package.json
734
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/proxy-addr/package.json
735
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/array-flatten/package.json
736
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/express/node_modules/path-to-regexp/package.json
737
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/bytes/package.json
738
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/@contrast/fn-inspect/package.json
739
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/eventemitter3/package.json
740
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/double-ended-queue/package.json
741
+ CJS(0) -> _load() /home/bruce/github/csi/node-mono/node_modules/invariant/package.json
742
+ ```