-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
3997 lines (3997 loc) · 220 KB
/
npm-debug.log
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ '/www/server/nodejs/v6.17.1/bin/node',
1 verbose cli '/usr/bin/npm',
1 verbose cli 'install',
1 verbose cli 'socket.io' ]
2 info using npm@3.10.10
3 info using node@v6.17.1
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData socket.io
8 silly fetchNamedPackageData socket.io
9 silly mapToRegistry name socket.io
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmmirror.com/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'socket.io',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'socket.io',
12 silly mapToRegistry name: 'socket.io',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmmirror.com/socket.io
14 verbose request uri https://registry.npmmirror.com/socket.io
15 verbose request no auth needed
16 info attempt registry request try #1 at 6:07:48 PM
17 verbose request id 43ca2019652e6259
18 http request GET https://registry.npmmirror.com/socket.io
19 http 200 https://registry.npmmirror.com/socket.io
20 verbose headers { server: 'Tengine',
20 verbose headers 'content-type': 'application/json; charset=utf-8',
20 verbose headers 'content-length': '68865',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'strict-transport-security': 'max-age=5184000',
20 verbose headers date: 'Sat, 01 Jun 2024 18:07:26 GMT',
20 verbose headers 'request-id': 'cd9c2460-2041-11ef-9b4d-cdfdde8abc14',
20 verbose headers 'cache-control': 'public, max-age=300',
20 verbose headers 'x-frame-options': 'SAMEORIGIN',
20 verbose headers 'x-xss-protection': '1; mode=block',
20 verbose headers 'x-content-type-options': 'nosniff',
20 verbose headers 'x-download-options': 'noopen',
20 verbose headers 'x-readtime': '1.292',
20 verbose headers via: 'sg17.l1, ens-cache6.sg17, l2sg4.l2, cache34.l2sg4, npmmirror-x86-2022012802003, cache34.l2sg4[311,310,304-0,M], cache5.l2sg4[312,0], ens-cache6.sg17[0,0,200-0,H], ens-cache2.sg17[1,0]',
20 verbose headers 'ali-swift-global-savetime': '1717265246',
20 verbose headers vary: 'Origin, Accept, Accept-Encoding',
20 verbose headers etag: 'W/"972fcf11846ada97591f3bb27d5fcae05afb2420"',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers age: '22',
20 verbose headers 'x-cache': 'HIT TCP_MEM_HIT dirn:-2:-2',
20 verbose headers 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:26 GMT',
20 verbose headers 'x-swift-cachetime': '300',
20 verbose headers 'timing-allow-origin': '*',
20 verbose headers eagleid: 'a3b5a09617172652687001234e' }
21 silly get cb [ 200,
21 silly get { server: 'Tengine',
21 silly get 'content-type': 'application/json; charset=utf-8',
21 silly get 'content-length': '68865',
21 silly get connection: 'keep-alive',
21 silly get 'strict-transport-security': 'max-age=5184000',
21 silly get date: 'Sat, 01 Jun 2024 18:07:26 GMT',
21 silly get 'request-id': 'cd9c2460-2041-11ef-9b4d-cdfdde8abc14',
21 silly get 'cache-control': 'public, max-age=300',
21 silly get 'x-frame-options': 'SAMEORIGIN',
21 silly get 'x-xss-protection': '1; mode=block',
21 silly get 'x-content-type-options': 'nosniff',
21 silly get 'x-download-options': 'noopen',
21 silly get 'x-readtime': '1.292',
21 silly get via: 'sg17.l1, ens-cache6.sg17, l2sg4.l2, cache34.l2sg4, npmmirror-x86-2022012802003, cache34.l2sg4[311,310,304-0,M], cache5.l2sg4[312,0], ens-cache6.sg17[0,0,200-0,H], ens-cache2.sg17[1,0]',
21 silly get 'ali-swift-global-savetime': '1717265246',
21 silly get vary: 'Origin, Accept, Accept-Encoding',
21 silly get etag: 'W/"972fcf11846ada97591f3bb27d5fcae05afb2420"',
21 silly get 'content-encoding': 'gzip',
21 silly get age: '22',
21 silly get 'x-cache': 'HIT TCP_MEM_HIT dirn:-2:-2',
21 silly get 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:26 GMT',
21 silly get 'x-swift-cachetime': '300',
21 silly get 'timing-allow-origin': '*',
21 silly get eagleid: 'a3b5a09617172652687001234e' } ]
22 verbose get saving socket.io to /www/server/nodejs/cache/registry.npmmirror.com/socket.io/.cache.json
23 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
24 verbose makeDirectory /www/server/nodejs/cache creation not in flight; initializing
25 silly makeDirectory /www/server/nodejs/cache uid: 0 gid: 0
26 silly install normalizeTree
27 silly loadCurrentTree Finishing
28 silly loadIdealTree Starting
29 silly install loadIdealTree
30 silly cloneCurrentTree Starting
31 silly install cloneCurrentTreeToIdealTree
32 silly cloneCurrentTree Finishing
33 silly loadShrinkwrap Starting
34 silly install loadShrinkwrap
35 silly loadShrinkwrap Finishing
36 silly loadAllDepsIntoIdealTree Starting
37 silly install loadAllDepsIntoIdealTree
38 silly resolveWithNewModule socket.io@4.7.5 checking installable status
39 silly cache add args [ 'socket.io', null ]
40 verbose cache add spec socket.io
41 silly cache add parsed spec Result {
41 silly cache add raw: 'socket.io',
41 silly cache add scope: null,
41 silly cache add escapedName: 'socket.io',
41 silly cache add name: 'socket.io',
41 silly cache add rawSpec: '',
41 silly cache add spec: 'latest',
41 silly cache add type: 'tag' }
42 silly addNamed socket.io@latest
43 verbose addNamed "latest" is being treated as a dist-tag for socket.io
44 info addNameTag [ 'socket.io', 'latest' ]
45 silly mapToRegistry name socket.io
46 silly mapToRegistry using default registry
47 silly mapToRegistry registry https://registry.npmmirror.com/
48 silly mapToRegistry data Result {
48 silly mapToRegistry raw: 'socket.io',
48 silly mapToRegistry scope: null,
48 silly mapToRegistry escapedName: 'socket.io',
48 silly mapToRegistry name: 'socket.io',
48 silly mapToRegistry rawSpec: '',
48 silly mapToRegistry spec: 'latest',
48 silly mapToRegistry type: 'tag' }
49 silly mapToRegistry uri https://registry.npmmirror.com/socket.io
50 verbose addNameTag registry:https://registry.npmmirror.com/socket.io not in flight; fetching
51 verbose get https://registry.npmmirror.com/socket.io not expired, no request
52 silly addNameTag next cb for socket.io with tag latest
53 silly addNamed socket.io@4.7.5
54 verbose addNamed "4.7.5" is a plain semver version for socket.io
55 silly mapToRegistry name socket.io
56 silly mapToRegistry using default registry
57 silly mapToRegistry registry https://registry.npmmirror.com/
58 silly mapToRegistry data Result {
58 silly mapToRegistry raw: 'socket.io',
58 silly mapToRegistry scope: null,
58 silly mapToRegistry escapedName: 'socket.io',
58 silly mapToRegistry name: 'socket.io',
58 silly mapToRegistry rawSpec: '',
58 silly mapToRegistry spec: 'latest',
58 silly mapToRegistry type: 'tag' }
59 silly mapToRegistry uri https://registry.npmmirror.com/socket.io
60 verbose addRemoteTarball https://registry.npmmirror.com/socket.io/-/socket.io-4.7.5.tgz not in flight; adding
61 verbose addRemoteTarball [ 'https://registry.npmmirror.com/socket.io/-/socket.io-4.7.5.tgz',
61 verbose addRemoteTarball '56eb2d976aef9d1445f373a62d781a41c7add8f8' ]
62 info retry fetch attempt 1 at 6:07:48 PM
63 info attempt registry request try #1 at 6:07:48 PM
64 http fetch GET https://registry.npmmirror.com/socket.io/-/socket.io-4.7.5.tgz
65 http fetch 200 https://registry.npmmirror.com/socket.io/-/socket.io-4.7.5.tgz
66 silly fetchAndShaCheck shasum 56eb2d976aef9d1445f373a62d781a41c7add8f8
67 verbose addTmpTarball /tmp/npm-111807-b98e83b3/registry.npmmirror.com/socket.io/-/socket.io-4.7.5.tgz not in flight; adding
68 verbose addTmpTarball already have metadata; skipping unpack for socket.io@4.7.5
69 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
70 silly cache afterAdd socket.io@4.7.5
71 verbose afterAdd /www/server/nodejs/cache/socket.io/4.7.5/package/package.json not in flight; writing
72 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
73 verbose afterAdd /www/server/nodejs/cache/socket.io/4.7.5/package/package.json written
74 silly fetchNamedPackageData base64id
75 silly mapToRegistry name base64id
76 silly mapToRegistry using default registry
77 silly mapToRegistry registry https://registry.npmmirror.com/
78 silly mapToRegistry data Result {
78 silly mapToRegistry raw: 'base64id',
78 silly mapToRegistry scope: null,
78 silly mapToRegistry escapedName: 'base64id',
78 silly mapToRegistry name: 'base64id',
78 silly mapToRegistry rawSpec: '',
78 silly mapToRegistry spec: 'latest',
78 silly mapToRegistry type: 'tag' }
79 silly mapToRegistry uri https://registry.npmmirror.com/base64id
80 silly fetchNamedPackageData cors
81 silly mapToRegistry name cors
82 silly mapToRegistry using default registry
83 silly mapToRegistry registry https://registry.npmmirror.com/
84 silly mapToRegistry data Result {
84 silly mapToRegistry raw: 'cors',
84 silly mapToRegistry scope: null,
84 silly mapToRegistry escapedName: 'cors',
84 silly mapToRegistry name: 'cors',
84 silly mapToRegistry rawSpec: '',
84 silly mapToRegistry spec: 'latest',
84 silly mapToRegistry type: 'tag' }
85 silly mapToRegistry uri https://registry.npmmirror.com/cors
86 silly fetchNamedPackageData debug
87 silly mapToRegistry name debug
88 silly mapToRegistry using default registry
89 silly mapToRegistry registry https://registry.npmmirror.com/
90 silly mapToRegistry data Result {
90 silly mapToRegistry raw: 'debug',
90 silly mapToRegistry scope: null,
90 silly mapToRegistry escapedName: 'debug',
90 silly mapToRegistry name: 'debug',
90 silly mapToRegistry rawSpec: '',
90 silly mapToRegistry spec: 'latest',
90 silly mapToRegistry type: 'tag' }
91 silly mapToRegistry uri https://registry.npmmirror.com/debug
92 silly fetchNamedPackageData engine.io
93 silly mapToRegistry name engine.io
94 silly mapToRegistry using default registry
95 silly mapToRegistry registry https://registry.npmmirror.com/
96 silly mapToRegistry data Result {
96 silly mapToRegistry raw: 'engine.io',
96 silly mapToRegistry scope: null,
96 silly mapToRegistry escapedName: 'engine.io',
96 silly mapToRegistry name: 'engine.io',
96 silly mapToRegistry rawSpec: '',
96 silly mapToRegistry spec: 'latest',
96 silly mapToRegistry type: 'tag' }
97 silly mapToRegistry uri https://registry.npmmirror.com/engine.io
98 silly fetchNamedPackageData socket.io-adapter
99 silly mapToRegistry name socket.io-adapter
100 silly mapToRegistry using default registry
101 silly mapToRegistry registry https://registry.npmmirror.com/
102 silly mapToRegistry data Result {
102 silly mapToRegistry raw: 'socket.io-adapter',
102 silly mapToRegistry scope: null,
102 silly mapToRegistry escapedName: 'socket.io-adapter',
102 silly mapToRegistry name: 'socket.io-adapter',
102 silly mapToRegistry rawSpec: '',
102 silly mapToRegistry spec: 'latest',
102 silly mapToRegistry type: 'tag' }
103 silly mapToRegistry uri https://registry.npmmirror.com/socket.io-adapter
104 silly fetchNamedPackageData socket.io-parser
105 silly mapToRegistry name socket.io-parser
106 silly mapToRegistry using default registry
107 silly mapToRegistry registry https://registry.npmmirror.com/
108 silly mapToRegistry data Result {
108 silly mapToRegistry raw: 'socket.io-parser',
108 silly mapToRegistry scope: null,
108 silly mapToRegistry escapedName: 'socket.io-parser',
108 silly mapToRegistry name: 'socket.io-parser',
108 silly mapToRegistry rawSpec: '',
108 silly mapToRegistry spec: 'latest',
108 silly mapToRegistry type: 'tag' }
109 silly mapToRegistry uri https://registry.npmmirror.com/socket.io-parser
110 verbose request uri https://registry.npmmirror.com/base64id
111 verbose request no auth needed
112 info attempt registry request try #1 at 6:07:49 PM
113 http request GET https://registry.npmmirror.com/base64id
114 verbose request uri https://registry.npmmirror.com/cors
115 verbose request no auth needed
116 info attempt registry request try #1 at 6:07:49 PM
117 http request GET https://registry.npmmirror.com/cors
118 verbose request uri https://registry.npmmirror.com/debug
119 verbose request no auth needed
120 info attempt registry request try #1 at 6:07:49 PM
121 http request GET https://registry.npmmirror.com/debug
122 verbose request uri https://registry.npmmirror.com/engine.io
123 verbose request no auth needed
124 info attempt registry request try #1 at 6:07:49 PM
125 http request GET https://registry.npmmirror.com/engine.io
126 verbose request uri https://registry.npmmirror.com/socket.io-adapter
127 verbose request no auth needed
128 info attempt registry request try #1 at 6:07:49 PM
129 http request GET https://registry.npmmirror.com/socket.io-adapter
130 verbose request uri https://registry.npmmirror.com/socket.io-parser
131 verbose request no auth needed
132 info attempt registry request try #1 at 6:07:49 PM
133 http request GET https://registry.npmmirror.com/socket.io-parser
134 http 200 https://registry.npmmirror.com/base64id
135 verbose headers { server: 'Tengine',
135 verbose headers 'content-type': 'application/json; charset=utf-8',
135 verbose headers 'content-length': '1765',
135 verbose headers connection: 'keep-alive',
135 verbose headers 'strict-transport-security': 'max-age=5184000',
135 verbose headers date: 'Sat, 01 Jun 2024 18:07:49 GMT',
135 verbose headers 'request-id': 'db7166e0-2041-11ef-8ed9-b3721f3540d3',
135 verbose headers 'cache-control': 'public, max-age=300',
135 verbose headers 'x-frame-options': 'SAMEORIGIN',
135 verbose headers 'x-xss-protection': '1; mode=block',
135 verbose headers 'x-content-type-options': 'nosniff',
135 verbose headers 'x-download-options': 'noopen',
135 verbose headers 'x-readtime': '1.057',
135 verbose headers via: 'sg17.l1, ens-cache12.sg17, l2sg4.l2, cache25.l2sg4, npmmirror-x86-20220823001, cache25.l2sg4[194,193,304-0,M], cache13.l2sg4[195,0], ens-cache12.sg17[199,199,200-0,H], ens-cache2.sg17[200,0]',
135 verbose headers 'ali-swift-global-savetime': '1717265269',
135 verbose headers vary: 'Origin, Accept, Accept-Encoding',
135 verbose headers etag: 'W/"3017412948a40bc184c45dfe36d8cafb818718c0"',
135 verbose headers 'content-encoding': 'gzip',
135 verbose headers age: '0',
135 verbose headers 'x-cache': 'HIT TCP_REFRESH_HIT dirn:-2:-2',
135 verbose headers 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:49 GMT',
135 verbose headers 'x-swift-cachetime': '300',
135 verbose headers 'timing-allow-origin': '*',
135 verbose headers eagleid: 'a3b5a09617172652697914441e' }
136 silly get cb [ 200,
136 silly get { server: 'Tengine',
136 silly get 'content-type': 'application/json; charset=utf-8',
136 silly get 'content-length': '1765',
136 silly get connection: 'keep-alive',
136 silly get 'strict-transport-security': 'max-age=5184000',
136 silly get date: 'Sat, 01 Jun 2024 18:07:49 GMT',
136 silly get 'request-id': 'db7166e0-2041-11ef-8ed9-b3721f3540d3',
136 silly get 'cache-control': 'public, max-age=300',
136 silly get 'x-frame-options': 'SAMEORIGIN',
136 silly get 'x-xss-protection': '1; mode=block',
136 silly get 'x-content-type-options': 'nosniff',
136 silly get 'x-download-options': 'noopen',
136 silly get 'x-readtime': '1.057',
136 silly get via: 'sg17.l1, ens-cache12.sg17, l2sg4.l2, cache25.l2sg4, npmmirror-x86-20220823001, cache25.l2sg4[194,193,304-0,M], cache13.l2sg4[195,0], ens-cache12.sg17[199,199,200-0,H], ens-cache2.sg17[200,0]',
136 silly get 'ali-swift-global-savetime': '1717265269',
136 silly get vary: 'Origin, Accept, Accept-Encoding',
136 silly get etag: 'W/"3017412948a40bc184c45dfe36d8cafb818718c0"',
136 silly get 'content-encoding': 'gzip',
136 silly get age: '0',
136 silly get 'x-cache': 'HIT TCP_REFRESH_HIT dirn:-2:-2',
136 silly get 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:49 GMT',
136 silly get 'x-swift-cachetime': '300',
136 silly get 'timing-allow-origin': '*',
136 silly get eagleid: 'a3b5a09617172652697914441e' } ]
137 verbose get saving base64id to /www/server/nodejs/cache/registry.npmmirror.com/base64id/.cache.json
138 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
139 silly resolveWithNewModule base64id@2.0.0 checking installable status
140 silly cache add args [ 'base64id@~2.0.0', null ]
141 verbose cache add spec base64id@~2.0.0
142 silly cache add parsed spec Result {
142 silly cache add raw: 'base64id@~2.0.0',
142 silly cache add scope: null,
142 silly cache add escapedName: 'base64id',
142 silly cache add name: 'base64id',
142 silly cache add rawSpec: '~2.0.0',
142 silly cache add spec: '>=2.0.0 <2.1.0',
142 silly cache add type: 'range' }
143 silly addNamed base64id@>=2.0.0 <2.1.0
144 verbose addNamed ">=2.0.0 <2.1.0" is a valid semver range for base64id
145 silly addNameRange { name: 'base64id', range: '>=2.0.0 <2.1.0', hasData: false }
146 silly mapToRegistry name base64id
147 silly mapToRegistry using default registry
148 silly mapToRegistry registry https://registry.npmmirror.com/
149 silly mapToRegistry data Result {
149 silly mapToRegistry raw: 'base64id',
149 silly mapToRegistry scope: null,
149 silly mapToRegistry escapedName: 'base64id',
149 silly mapToRegistry name: 'base64id',
149 silly mapToRegistry rawSpec: '',
149 silly mapToRegistry spec: 'latest',
149 silly mapToRegistry type: 'tag' }
150 silly mapToRegistry uri https://registry.npmmirror.com/base64id
151 verbose addNameRange registry:https://registry.npmmirror.com/base64id not in flight; fetching
152 verbose get https://registry.npmmirror.com/base64id not expired, no request
153 silly addNameRange number 2 { name: 'base64id', range: '>=2.0.0 <2.1.0', hasData: true }
154 silly addNameRange versions [ 'base64id', [ '2.0.0', '1.0.0', '0.1.0' ] ]
155 silly addNamed base64id@2.0.0
156 verbose addNamed "2.0.0" is a plain semver version for base64id
157 silly mapToRegistry name base64id
158 silly mapToRegistry using default registry
159 silly mapToRegistry registry https://registry.npmmirror.com/
160 silly mapToRegistry data Result {
160 silly mapToRegistry raw: 'base64id',
160 silly mapToRegistry scope: null,
160 silly mapToRegistry escapedName: 'base64id',
160 silly mapToRegistry name: 'base64id',
160 silly mapToRegistry rawSpec: '',
160 silly mapToRegistry spec: 'latest',
160 silly mapToRegistry type: 'tag' }
161 silly mapToRegistry uri https://registry.npmmirror.com/base64id
162 verbose addRemoteTarball https://registry.npmmirror.com/base64id/-/base64id-2.0.0.tgz not in flight; adding
163 verbose addRemoteTarball [ 'https://registry.npmmirror.com/base64id/-/base64id-2.0.0.tgz',
163 verbose addRemoteTarball '2770ac6bc47d312af97a8bf9a634342e0cd25cb6' ]
164 info retry fetch attempt 1 at 6:07:50 PM
165 info attempt registry request try #1 at 6:07:50 PM
166 http fetch GET https://registry.npmmirror.com/base64id/-/base64id-2.0.0.tgz
167 http 200 https://registry.npmmirror.com/cors
168 verbose headers { server: 'Tengine',
168 verbose headers 'content-type': 'application/json; charset=utf-8',
168 verbose headers 'content-length': '12553',
168 verbose headers connection: 'keep-alive',
168 verbose headers 'strict-transport-security': 'max-age=5184000',
168 verbose headers date: 'Sat, 01 Jun 2024 18:07:49 GMT',
168 verbose headers vary: 'Origin, Accept, Accept-Encoding',
168 verbose headers 'request-id': 'db71dc10-2041-11ef-a380-a7a54390607e',
168 verbose headers etag: 'W/"9e32ab4ad748b146c043cc5e47d03089b2e0cccd"',
168 verbose headers 'cache-control': 'public, max-age=300',
168 verbose headers 'x-frame-options': 'SAMEORIGIN',
168 verbose headers 'x-xss-protection': '1; mode=block',
168 verbose headers 'x-content-type-options': 'nosniff',
168 verbose headers 'x-download-options': 'noopen',
168 verbose headers 'x-readtime': '15.694',
168 verbose headers via: 'sg17.l1, ens-cache12.sg17, l2sg4.l2, cache29.l2sg4, registry.npmmirror.com-06, cache29.l2sg4[207,207,200-0,M], cache12.l2sg4[208,0], ens-cache12.sg17[261,261,200-0,M], ens-cache5.sg17[262,0]',
168 verbose headers 'content-encoding': 'gzip',
168 verbose headers 'ali-swift-global-savetime': '1717265269',
168 verbose headers 'x-cache': 'MISS TCP_REFRESH_MISS dirn:-2:-2',
168 verbose headers 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:50 GMT',
168 verbose headers 'x-swift-cachetime': '299',
168 verbose headers 'timing-allow-origin': '*',
168 verbose headers eagleid: 'a3b5a09917172652697985637e' }
169 silly get cb [ 200,
169 silly get { server: 'Tengine',
169 silly get 'content-type': 'application/json; charset=utf-8',
169 silly get 'content-length': '12553',
169 silly get connection: 'keep-alive',
169 silly get 'strict-transport-security': 'max-age=5184000',
169 silly get date: 'Sat, 01 Jun 2024 18:07:49 GMT',
169 silly get vary: 'Origin, Accept, Accept-Encoding',
169 silly get 'request-id': 'db71dc10-2041-11ef-a380-a7a54390607e',
169 silly get etag: 'W/"9e32ab4ad748b146c043cc5e47d03089b2e0cccd"',
169 silly get 'cache-control': 'public, max-age=300',
169 silly get 'x-frame-options': 'SAMEORIGIN',
169 silly get 'x-xss-protection': '1; mode=block',
169 silly get 'x-content-type-options': 'nosniff',
169 silly get 'x-download-options': 'noopen',
169 silly get 'x-readtime': '15.694',
169 silly get via: 'sg17.l1, ens-cache12.sg17, l2sg4.l2, cache29.l2sg4, registry.npmmirror.com-06, cache29.l2sg4[207,207,200-0,M], cache12.l2sg4[208,0], ens-cache12.sg17[261,261,200-0,M], ens-cache5.sg17[262,0]',
169 silly get 'content-encoding': 'gzip',
169 silly get 'ali-swift-global-savetime': '1717265269',
169 silly get 'x-cache': 'MISS TCP_REFRESH_MISS dirn:-2:-2',
169 silly get 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:50 GMT',
169 silly get 'x-swift-cachetime': '299',
169 silly get 'timing-allow-origin': '*',
169 silly get eagleid: 'a3b5a09917172652697985637e' } ]
170 verbose get saving cors to /www/server/nodejs/cache/registry.npmmirror.com/cors/.cache.json
171 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
172 silly resolveWithNewModule cors@2.8.5 checking installable status
173 silly cache add args [ 'cors@~2.8.5', null ]
174 verbose cache add spec cors@~2.8.5
175 silly cache add parsed spec Result {
175 silly cache add raw: 'cors@~2.8.5',
175 silly cache add scope: null,
175 silly cache add escapedName: 'cors',
175 silly cache add name: 'cors',
175 silly cache add rawSpec: '~2.8.5',
175 silly cache add spec: '>=2.8.5 <2.9.0',
175 silly cache add type: 'range' }
176 silly addNamed cors@>=2.8.5 <2.9.0
177 verbose addNamed ">=2.8.5 <2.9.0" is a valid semver range for cors
178 silly addNameRange { name: 'cors', range: '>=2.8.5 <2.9.0', hasData: false }
179 silly mapToRegistry name cors
180 silly mapToRegistry using default registry
181 silly mapToRegistry registry https://registry.npmmirror.com/
182 silly mapToRegistry data Result {
182 silly mapToRegistry raw: 'cors',
182 silly mapToRegistry scope: null,
182 silly mapToRegistry escapedName: 'cors',
182 silly mapToRegistry name: 'cors',
182 silly mapToRegistry rawSpec: '',
182 silly mapToRegistry spec: 'latest',
182 silly mapToRegistry type: 'tag' }
183 silly mapToRegistry uri https://registry.npmmirror.com/cors
184 verbose addNameRange registry:https://registry.npmmirror.com/cors not in flight; fetching
185 verbose get https://registry.npmmirror.com/cors not expired, no request
186 silly addNameRange number 2 { name: 'cors', range: '>=2.8.5 <2.9.0', hasData: true }
187 silly addNameRange versions [ 'cors',
187 silly addNameRange [ '2.8.5',
187 silly addNameRange '2.8.4',
187 silly addNameRange '2.8.3',
187 silly addNameRange '2.8.2',
187 silly addNameRange '2.8.1',
187 silly addNameRange '2.8.0',
187 silly addNameRange '2.7.2',
187 silly addNameRange '2.7.1',
187 silly addNameRange '2.7.0',
187 silly addNameRange '2.6.1',
187 silly addNameRange '2.6.0',
187 silly addNameRange '2.5.3',
187 silly addNameRange '2.5.2',
187 silly addNameRange '2.5.1',
187 silly addNameRange '2.5.0',
187 silly addNameRange '2.4.2',
187 silly addNameRange '2.4.1',
187 silly addNameRange '2.4.0',
187 silly addNameRange '2.3.2',
187 silly addNameRange '2.3.1',
187 silly addNameRange '2.3.0',
187 silly addNameRange '2.2.0',
187 silly addNameRange '2.1.1',
187 silly addNameRange '2.1.0',
187 silly addNameRange '2.0.0',
187 silly addNameRange '1.0.1',
187 silly addNameRange '1.0.0',
187 silly addNameRange '0.1.1',
187 silly addNameRange '0.1.0',
187 silly addNameRange '0.0.5',
187 silly addNameRange '0.0.4',
187 silly addNameRange '0.0.3',
187 silly addNameRange '0.0.2',
187 silly addNameRange '0.0.1' ] ]
188 silly addNamed cors@2.8.5
189 verbose addNamed "2.8.5" is a plain semver version for cors
190 silly mapToRegistry name cors
191 silly mapToRegistry using default registry
192 silly mapToRegistry registry https://registry.npmmirror.com/
193 silly mapToRegistry data Result {
193 silly mapToRegistry raw: 'cors',
193 silly mapToRegistry scope: null,
193 silly mapToRegistry escapedName: 'cors',
193 silly mapToRegistry name: 'cors',
193 silly mapToRegistry rawSpec: '',
193 silly mapToRegistry spec: 'latest',
193 silly mapToRegistry type: 'tag' }
194 silly mapToRegistry uri https://registry.npmmirror.com/cors
195 verbose addRemoteTarball https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz not in flight; adding
196 verbose addRemoteTarball [ 'https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz',
196 verbose addRemoteTarball 'eac11da51592dd86b9f06f6e7ac293b3df875d29' ]
197 info retry fetch attempt 1 at 6:07:50 PM
198 info attempt registry request try #1 at 6:07:50 PM
199 http fetch GET https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz
200 http fetch 200 https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz
201 silly fetchAndShaCheck shasum eac11da51592dd86b9f06f6e7ac293b3df875d29
202 verbose addTmpTarball /tmp/npm-111807-b98e83b3/registry.npmmirror.com/cors/-/cors-2.8.5.tgz not in flight; adding
203 verbose addTmpTarball already have metadata; skipping unpack for cors@2.8.5
204 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
205 silly cache afterAdd cors@2.8.5
206 verbose afterAdd /www/server/nodejs/cache/cors/2.8.5/package/package.json not in flight; writing
207 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
208 verbose afterAdd /www/server/nodejs/cache/cors/2.8.5/package/package.json written
209 http 200 https://registry.npmmirror.com/engine.io
210 verbose headers { server: 'Tengine',
210 verbose headers 'content-type': 'application/json; charset=utf-8',
210 verbose headers 'content-length': '61333',
210 verbose headers connection: 'keep-alive',
210 verbose headers 'strict-transport-security': 'max-age=5184000',
210 verbose headers date: 'Sat, 01 Jun 2024 18:07:50 GMT',
210 verbose headers 'request-id': 'dbd4bc90-2041-11ef-8b69-9fe807a82a12',
210 verbose headers 'cache-control': 'public, max-age=300',
210 verbose headers 'x-frame-options': 'SAMEORIGIN',
210 verbose headers 'x-xss-protection': '1; mode=block',
210 verbose headers 'x-content-type-options': 'nosniff',
210 verbose headers 'x-download-options': 'noopen',
210 verbose headers 'x-readtime': '0.76',
210 verbose headers via: 'sg17.l1, ens-cache2.sg17, l2sg4.l2, cache1.l2sg4, npmmirror-x86-20220823002, cache1.l2sg4[869,869,304-0,M], cache28.l2sg4[870,0], ens-cache2.sg17[870,870,200-0,H], ens-cache8.sg17[871,0]',
210 verbose headers 'ali-swift-global-savetime': '1717265270',
210 verbose headers vary: 'Origin, Accept, Accept-Encoding',
210 verbose headers etag: 'W/"a9c2a56998d8b8fb4baab8fa9c871dfdda5431d7"',
210 verbose headers 'content-encoding': 'gzip',
210 verbose headers age: '0',
210 verbose headers 'x-cache': 'HIT TCP_REFRESH_HIT dirn:-2:-2',
210 verbose headers 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:50 GMT',
210 verbose headers 'x-swift-cachetime': '300',
210 verbose headers 'timing-allow-origin': '*',
210 verbose headers eagleid: 'a3b5a09c17172652697984824e' }
211 silly get cb [ 200,
211 silly get { server: 'Tengine',
211 silly get 'content-type': 'application/json; charset=utf-8',
211 silly get 'content-length': '61333',
211 silly get connection: 'keep-alive',
211 silly get 'strict-transport-security': 'max-age=5184000',
211 silly get date: 'Sat, 01 Jun 2024 18:07:50 GMT',
211 silly get 'request-id': 'dbd4bc90-2041-11ef-8b69-9fe807a82a12',
211 silly get 'cache-control': 'public, max-age=300',
211 silly get 'x-frame-options': 'SAMEORIGIN',
211 silly get 'x-xss-protection': '1; mode=block',
211 silly get 'x-content-type-options': 'nosniff',
211 silly get 'x-download-options': 'noopen',
211 silly get 'x-readtime': '0.76',
211 silly get via: 'sg17.l1, ens-cache2.sg17, l2sg4.l2, cache1.l2sg4, npmmirror-x86-20220823002, cache1.l2sg4[869,869,304-0,M], cache28.l2sg4[870,0], ens-cache2.sg17[870,870,200-0,H], ens-cache8.sg17[871,0]',
211 silly get 'ali-swift-global-savetime': '1717265270',
211 silly get vary: 'Origin, Accept, Accept-Encoding',
211 silly get etag: 'W/"a9c2a56998d8b8fb4baab8fa9c871dfdda5431d7"',
211 silly get 'content-encoding': 'gzip',
211 silly get age: '0',
211 silly get 'x-cache': 'HIT TCP_REFRESH_HIT dirn:-2:-2',
211 silly get 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:50 GMT',
211 silly get 'x-swift-cachetime': '300',
211 silly get 'timing-allow-origin': '*',
211 silly get eagleid: 'a3b5a09c17172652697984824e' } ]
212 verbose get saving engine.io to /www/server/nodejs/cache/registry.npmmirror.com/engine.io/.cache.json
213 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
214 silly resolveWithNewModule engine.io@6.5.4 checking installable status
215 silly cache add args [ 'engine.io@~6.5.2', null ]
216 verbose cache add spec engine.io@~6.5.2
217 silly cache add parsed spec Result {
217 silly cache add raw: 'engine.io@~6.5.2',
217 silly cache add scope: null,
217 silly cache add escapedName: 'engine.io',
217 silly cache add name: 'engine.io',
217 silly cache add rawSpec: '~6.5.2',
217 silly cache add spec: '>=6.5.2 <6.6.0',
217 silly cache add type: 'range' }
218 silly addNamed engine.io@>=6.5.2 <6.6.0
219 verbose addNamed ">=6.5.2 <6.6.0" is a valid semver range for engine.io
220 silly addNameRange { name: 'engine.io', range: '>=6.5.2 <6.6.0', hasData: false }
221 silly mapToRegistry name engine.io
222 silly mapToRegistry using default registry
223 silly mapToRegistry registry https://registry.npmmirror.com/
224 silly mapToRegistry data Result {
224 silly mapToRegistry raw: 'engine.io',
224 silly mapToRegistry scope: null,
224 silly mapToRegistry escapedName: 'engine.io',
224 silly mapToRegistry name: 'engine.io',
224 silly mapToRegistry rawSpec: '',
224 silly mapToRegistry spec: 'latest',
224 silly mapToRegistry type: 'tag' }
225 silly mapToRegistry uri https://registry.npmmirror.com/engine.io
226 verbose addNameRange registry:https://registry.npmmirror.com/engine.io not in flight; fetching
227 verbose get https://registry.npmmirror.com/engine.io not expired, no request
228 silly addNameRange number 2 { name: 'engine.io', range: '>=6.5.2 <6.6.0', hasData: true }
229 silly addNameRange versions [ 'engine.io',
229 silly addNameRange [ '6.1.0',
229 silly addNameRange '6.0.1',
229 silly addNameRange '6.0.0',
229 silly addNameRange '5.2.0',
229 silly addNameRange '5.1.1',
229 silly addNameRange '5.1.0',
229 silly addNameRange '5.0.0',
229 silly addNameRange '4.1.1',
229 silly addNameRange '4.1.0',
229 silly addNameRange '4.0.6',
229 silly addNameRange '3.5.0',
229 silly addNameRange '4.0.5',
229 silly addNameRange '4.0.4',
229 silly addNameRange '4.0.3',
229 silly addNameRange '4.0.2',
229 silly addNameRange '4.0.1',
229 silly addNameRange '4.0.0',
229 silly addNameRange '3.4.2',
229 silly addNameRange '3.4.1',
229 silly addNameRange '4.0.0-alpha.1',
229 silly addNameRange '4.0.0-alpha.0',
229 silly addNameRange '3.4.0',
229 silly addNameRange '3.3.2',
229 silly addNameRange '3.3.1',
229 silly addNameRange '3.3.0',
229 silly addNameRange '3.2.1',
229 silly addNameRange '3.2.0',
229 silly addNameRange '3.1.5',
229 silly addNameRange '1.8.5',
229 silly addNameRange '3.1.4',
229 silly addNameRange '3.1.3',
229 silly addNameRange '3.1.2',
229 silly addNameRange '3.1.1',
229 silly addNameRange '1.8.4',
229 silly addNameRange '3.1.0',
229 silly addNameRange '3.0.0',
229 silly addNameRange '2.1.1',
229 silly addNameRange '2.1.0',
229 silly addNameRange '1.8.3',
229 silly addNameRange '2.0.2',
229 silly addNameRange '2.0.1',
229 silly addNameRange '2.0.0',
229 silly addNameRange '1.8.2',
229 silly addNameRange '1.8.1',
229 silly addNameRange '1.8.0',
229 silly addNameRange '1.7.2',
229 silly addNameRange '1.7.1',
229 silly addNameRange '1.7.0',
229 silly addNameRange '1.6.11',
229 silly addNameRange '1.6.10',
229 silly addNameRange '1.6.9',
229 silly addNameRange '1.6.8',
229 silly addNameRange '1.6.7',
229 silly addNameRange '1.6.6',
229 silly addNameRange '1.6.5',
229 silly addNameRange '1.6.4',
229 silly addNameRange '1.6.3',
229 silly addNameRange '1.6.2',
229 silly addNameRange '1.6.1',
229 silly addNameRange '1.6.0',
229 silly addNameRange '1.5.4',
229 silly addNameRange '1.5.3',
229 silly addNameRange '1.5.2',
229 silly addNameRange '1.5.1',
229 silly addNameRange '1.5.0',
229 silly addNameRange '1.4.3',
229 silly addNameRange '1.4.2',
229 silly addNameRange '1.4.1',
229 silly addNameRange '1.4.0',
229 silly addNameRange '1.3.1',
229 silly addNameRange '1.3.0',
229 silly addNameRange '1.2.2',
229 silly addNameRange '1.2.1',
229 silly addNameRange '1.2.0',
229 silly addNameRange '1.1.1',
229 silly addNameRange '1.1.0',
229 silly addNameRange '1.0.5',
229 silly addNameRange '1.0.4',
229 silly addNameRange '1.0.3',
229 silly addNameRange '1.0.2',
229 silly addNameRange '1.0.1',
229 silly addNameRange '1.0.0',
229 silly addNameRange '0.9.0',
229 silly addNameRange '0.8.2',
229 silly addNameRange '0.8.1',
229 silly addNameRange '0.8.0',
229 silly addNameRange '0.7.14',
229 silly addNameRange '0.7.13',
229 silly addNameRange '0.7.12',
229 silly addNameRange '0.7.11',
229 silly addNameRange '0.7.10',
229 silly addNameRange '0.7.9',
229 silly addNameRange '0.7.8',
229 silly addNameRange '0.7.7',
229 silly addNameRange '0.7.6',
229 silly addNameRange '0.7.5',
229 silly addNameRange '0.7.4',
229 silly addNameRange '0.7.3',
229 silly addNameRange '0.7.2',
229 silly addNameRange '0.7.1',
229 silly addNameRange ... 47 more items ] ]
230 silly addNamed engine.io@6.5.4
231 verbose addNamed "6.5.4" is a plain semver version for engine.io
232 silly mapToRegistry name engine.io
233 silly mapToRegistry using default registry
234 silly mapToRegistry registry https://registry.npmmirror.com/
235 silly mapToRegistry data Result {
235 silly mapToRegistry raw: 'engine.io',
235 silly mapToRegistry scope: null,
235 silly mapToRegistry escapedName: 'engine.io',
235 silly mapToRegistry name: 'engine.io',
235 silly mapToRegistry rawSpec: '',
235 silly mapToRegistry spec: 'latest',
235 silly mapToRegistry type: 'tag' }
236 silly mapToRegistry uri https://registry.npmmirror.com/engine.io
237 verbose addRemoteTarball https://registry.npmmirror.com/engine.io/-/engine.io-6.5.4.tgz not in flight; adding
238 verbose addRemoteTarball [ 'https://registry.npmmirror.com/engine.io/-/engine.io-6.5.4.tgz',
238 verbose addRemoteTarball '6822debf324e781add2254e912f8568508850cdc' ]
239 info retry fetch attempt 1 at 6:07:50 PM
240 info attempt registry request try #1 at 6:07:50 PM
241 http fetch GET https://registry.npmmirror.com/engine.io/-/engine.io-6.5.4.tgz
242 http 200 https://registry.npmmirror.com/debug
243 verbose headers { server: 'Tengine',
243 verbose headers 'content-type': 'application/json; charset=utf-8',
243 verbose headers 'transfer-encoding': 'chunked',
243 verbose headers connection: 'keep-alive',
243 verbose headers 'strict-transport-security': 'max-age=5184000',
243 verbose headers date: 'Sat, 01 Jun 2024 18:07:50 GMT',
243 verbose headers vary: 'Origin, Accept, Accept-Encoding',
243 verbose headers 'request-id': 'dbca8360-2041-11ef-9294-bfbcbad71d7f',
243 verbose headers etag: 'W/"79e3867a6c7e976ea797e3696baf6388d034a027"',
243 verbose headers 'cache-control': 'public, max-age=300',
243 verbose headers 'x-frame-options': 'SAMEORIGIN',
243 verbose headers 'x-xss-protection': '1; mode=block',
243 verbose headers 'x-content-type-options': 'nosniff',
243 verbose headers 'x-download-options': 'noopen',
243 verbose headers 'x-readtime': '2.64',
243 verbose headers via: 'sg17.l1, ens-cache14.sg17, l2sg4.l2, cache19.l2sg4, npmmirror-x86-20220823001, cache19.l2sg4[795,794,200-0,M], cache23.l2sg4[795,0], ens-cache14.sg17[858,858,200-0,M], ens-cache7.sg17[859,0]',
243 verbose headers 'content-encoding': 'gzip',
243 verbose headers 'ali-swift-global-savetime': '1717265270',
243 verbose headers 'x-cache': 'MISS TCP_REFRESH_MISS dirn:-2:-2',
243 verbose headers 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:50 GMT',
243 verbose headers 'x-swift-cachetime': '300',
243 verbose headers 'timing-allow-origin': '*',
243 verbose headers eagleid: 'a3b5a09b17172652698034109e' }
244 silly get cb [ 200,
244 silly get { server: 'Tengine',
244 silly get 'content-type': 'application/json; charset=utf-8',
244 silly get 'transfer-encoding': 'chunked',
244 silly get connection: 'keep-alive',
244 silly get 'strict-transport-security': 'max-age=5184000',
244 silly get date: 'Sat, 01 Jun 2024 18:07:50 GMT',
244 silly get vary: 'Origin, Accept, Accept-Encoding',
244 silly get 'request-id': 'dbca8360-2041-11ef-9294-bfbcbad71d7f',
244 silly get etag: 'W/"79e3867a6c7e976ea797e3696baf6388d034a027"',
244 silly get 'cache-control': 'public, max-age=300',
244 silly get 'x-frame-options': 'SAMEORIGIN',
244 silly get 'x-xss-protection': '1; mode=block',
244 silly get 'x-content-type-options': 'nosniff',
244 silly get 'x-download-options': 'noopen',
244 silly get 'x-readtime': '2.64',
244 silly get via: 'sg17.l1, ens-cache14.sg17, l2sg4.l2, cache19.l2sg4, npmmirror-x86-20220823001, cache19.l2sg4[795,794,200-0,M], cache23.l2sg4[795,0], ens-cache14.sg17[858,858,200-0,M], ens-cache7.sg17[859,0]',
244 silly get 'content-encoding': 'gzip',
244 silly get 'ali-swift-global-savetime': '1717265270',
244 silly get 'x-cache': 'MISS TCP_REFRESH_MISS dirn:-2:-2',
244 silly get 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:50 GMT',
244 silly get 'x-swift-cachetime': '300',
244 silly get 'timing-allow-origin': '*',
244 silly get eagleid: 'a3b5a09b17172652698034109e' } ]
245 verbose get saving debug to /www/server/nodejs/cache/registry.npmmirror.com/debug/.cache.json
246 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
247 silly resolveWithNewModule debug@4.3.5 checking installable status
248 silly cache add args [ 'debug@~4.3.2', null ]
249 verbose cache add spec debug@~4.3.2
250 silly cache add parsed spec Result {
250 silly cache add raw: 'debug@~4.3.2',
250 silly cache add scope: null,
250 silly cache add escapedName: 'debug',
250 silly cache add name: 'debug',
250 silly cache add rawSpec: '~4.3.2',
250 silly cache add spec: '>=4.3.2 <4.4.0',
250 silly cache add type: 'range' }
251 silly addNamed debug@>=4.3.2 <4.4.0
252 verbose addNamed ">=4.3.2 <4.4.0" is a valid semver range for debug
253 silly addNameRange { name: 'debug', range: '>=4.3.2 <4.4.0', hasData: false }
254 silly mapToRegistry name debug
255 silly mapToRegistry using default registry
256 silly mapToRegistry registry https://registry.npmmirror.com/
257 silly mapToRegistry data Result {
257 silly mapToRegistry raw: 'debug',
257 silly mapToRegistry scope: null,
257 silly mapToRegistry escapedName: 'debug',
257 silly mapToRegistry name: 'debug',
257 silly mapToRegistry rawSpec: '',
257 silly mapToRegistry spec: 'latest',
257 silly mapToRegistry type: 'tag' }
258 silly mapToRegistry uri https://registry.npmmirror.com/debug
259 verbose addNameRange registry:https://registry.npmmirror.com/debug not in flight; fetching
260 verbose get https://registry.npmmirror.com/debug not expired, no request
261 silly addNameRange number 2 { name: 'debug', range: '>=4.3.2 <4.4.0', hasData: true }
262 silly addNameRange versions [ 'debug',
262 silly addNameRange [ '4.3.3',
262 silly addNameRange '4.3.2',
262 silly addNameRange '3.2.7',
262 silly addNameRange '4.3.1',
262 silly addNameRange '4.3.0',
262 silly addNameRange '4.2.0',
262 silly addNameRange '4.1.1',
262 silly addNameRange '3.2.6',
262 silly addNameRange '4.1.0',
262 silly addNameRange '4.0.1',
262 silly addNameRange '3.2.5',
262 silly addNameRange '3.2.4',
262 silly addNameRange '4.0.0',
262 silly addNameRange '3.2.3',
262 silly addNameRange '3.2.2',
262 silly addNameRange '3.2.1',
262 silly addNameRange '3.2.0',
262 silly addNameRange '3.1.0',
262 silly addNameRange '2.6.9',
262 silly addNameRange '3.0.1',
262 silly addNameRange '3.0.0',
262 silly addNameRange '1.0.5',
262 silly addNameRange '2.6.8',
262 silly addNameRange '2.6.7',
262 silly addNameRange '2.6.6',
262 silly addNameRange '2.6.5',
262 silly addNameRange '2.6.4',
262 silly addNameRange '2.6.3',
262 silly addNameRange '2.6.2',
262 silly addNameRange '2.6.1',
262 silly addNameRange '2.6.0',
262 silly addNameRange '2.5.2',
262 silly addNameRange '2.5.1',
262 silly addNameRange '2.5.0',
262 silly addNameRange '2.4.5',
262 silly addNameRange '2.4.4',
262 silly addNameRange '2.4.3',
262 silly addNameRange '2.4.2',
262 silly addNameRange '2.4.1',
262 silly addNameRange '2.4.0',
262 silly addNameRange '2.3.3',
262 silly addNameRange '2.3.2',
262 silly addNameRange '2.3.1',
262 silly addNameRange '2.3.0',
262 silly addNameRange '2.2.0',
262 silly addNameRange '2.1.3',
262 silly addNameRange '2.1.2',
262 silly addNameRange '2.1.1',
262 silly addNameRange '2.1.0',
262 silly addNameRange '2.0.0',
262 silly addNameRange '1.0.4',
262 silly addNameRange '1.0.3',
262 silly addNameRange '1.0.2',
262 silly addNameRange '1.0.1',
262 silly addNameRange '1.0.0',
262 silly addNameRange '0.8.1',
262 silly addNameRange '0.8.0',
262 silly addNameRange '0.7.4',
262 silly addNameRange '0.7.3',
262 silly addNameRange '0.7.2',
262 silly addNameRange '0.7.1',
262 silly addNameRange '0.7.0',
262 silly addNameRange '0.6.0',
262 silly addNameRange '0.5.0',
262 silly addNameRange '0.4.1',
262 silly addNameRange '0.4.0',
262 silly addNameRange '0.3.0',
262 silly addNameRange '0.2.0',
262 silly addNameRange '0.1.0',
262 silly addNameRange '0.0.1',
262 silly addNameRange '4.3.4',
262 silly addNameRange '4.3.5' ] ]
263 silly addNamed debug@4.3.5
264 verbose addNamed "4.3.5" is a plain semver version for debug
265 silly mapToRegistry name debug
266 silly mapToRegistry using default registry
267 silly mapToRegistry registry https://registry.npmmirror.com/
268 silly mapToRegistry data Result {
268 silly mapToRegistry raw: 'debug',
268 silly mapToRegistry scope: null,
268 silly mapToRegistry escapedName: 'debug',
268 silly mapToRegistry name: 'debug',
268 silly mapToRegistry rawSpec: '',
268 silly mapToRegistry spec: 'latest',
268 silly mapToRegistry type: 'tag' }
269 silly mapToRegistry uri https://registry.npmmirror.com/debug
270 verbose addRemoteTarball https://registry.npmmirror.com/debug/-/debug-4.3.5.tgz not in flight; adding
271 verbose addRemoteTarball [ 'https://registry.npmmirror.com/debug/-/debug-4.3.5.tgz',
271 verbose addRemoteTarball 'e83444eceb9fedd4a1da56d671ae2446a01a6e1e' ]
272 info retry fetch attempt 1 at 6:07:50 PM
273 info attempt registry request try #1 at 6:07:50 PM
274 http fetch GET https://registry.npmmirror.com/debug/-/debug-4.3.5.tgz
275 http fetch 200 https://registry.npmmirror.com/engine.io/-/engine.io-6.5.4.tgz
276 silly fetchAndShaCheck shasum 6822debf324e781add2254e912f8568508850cdc
277 verbose addTmpTarball /tmp/npm-111807-b98e83b3/registry.npmmirror.com/engine.io/-/engine.io-6.5.4.tgz not in flight; adding
278 verbose addTmpTarball already have metadata; skipping unpack for engine.io@6.5.4
279 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
280 silly cache afterAdd engine.io@6.5.4
281 verbose afterAdd /www/server/nodejs/cache/engine.io/6.5.4/package/package.json not in flight; writing
282 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
283 verbose afterAdd /www/server/nodejs/cache/engine.io/6.5.4/package/package.json written
284 http 200 https://registry.npmmirror.com/socket.io-adapter
285 verbose headers { server: 'Tengine',
285 verbose headers 'content-type': 'application/json; charset=utf-8',
285 verbose headers 'content-length': '12646',
285 verbose headers connection: 'keep-alive',
285 verbose headers 'strict-transport-security': 'max-age=5184000',
285 verbose headers date: 'Sat, 01 Jun 2024 18:07:50 GMT',
285 verbose headers 'request-id': 'dc139a50-2041-11ef-9b4d-cdfdde8abc14',
285 verbose headers 'cache-control': 'public, max-age=300',
285 verbose headers 'x-frame-options': 'SAMEORIGIN',
285 verbose headers 'x-xss-protection': '1; mode=block',
285 verbose headers 'x-content-type-options': 'nosniff',
285 verbose headers 'x-download-options': 'noopen',
285 verbose headers 'x-readtime': '0.87',
285 verbose headers via: 'sg17.l1, ens-cache9.sg17, l2sg4.l2, cache20.l2sg4, npmmirror-x86-2022012802003, cache20.l2sg4[1255,1254,304-0,M], cache20.l2sg4[1256,0], ens-cache9.sg17[1260,1259,200-0,H], ens-cache15.sg17[1261,0]',
285 verbose headers 'ali-swift-global-savetime': '1717265271',
285 verbose headers vary: 'Origin, Accept, Accept-Encoding',
285 verbose headers etag: 'W/"d225d2a35ffda114fd7accdd27ed934c3433e0bd"',
285 verbose headers 'content-encoding': 'gzip',
285 verbose headers age: '0',
285 verbose headers 'x-cache': 'HIT TCP_REFRESH_HIT dirn:-2:-2',
285 verbose headers 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:51 GMT',
285 verbose headers 'x-swift-cachetime': '300',
285 verbose headers 'timing-allow-origin': '*',
285 verbose headers eagleid: 'a3b5a0a317172652697998888e' }
286 silly get cb [ 200,
286 silly get { server: 'Tengine',
286 silly get 'content-type': 'application/json; charset=utf-8',
286 silly get 'content-length': '12646',
286 silly get connection: 'keep-alive',
286 silly get 'strict-transport-security': 'max-age=5184000',
286 silly get date: 'Sat, 01 Jun 2024 18:07:50 GMT',
286 silly get 'request-id': 'dc139a50-2041-11ef-9b4d-cdfdde8abc14',
286 silly get 'cache-control': 'public, max-age=300',
286 silly get 'x-frame-options': 'SAMEORIGIN',
286 silly get 'x-xss-protection': '1; mode=block',
286 silly get 'x-content-type-options': 'nosniff',
286 silly get 'x-download-options': 'noopen',
286 silly get 'x-readtime': '0.87',
286 silly get via: 'sg17.l1, ens-cache9.sg17, l2sg4.l2, cache20.l2sg4, npmmirror-x86-2022012802003, cache20.l2sg4[1255,1254,304-0,M], cache20.l2sg4[1256,0], ens-cache9.sg17[1260,1259,200-0,H], ens-cache15.sg17[1261,0]',
286 silly get 'ali-swift-global-savetime': '1717265271',
286 silly get vary: 'Origin, Accept, Accept-Encoding',
286 silly get etag: 'W/"d225d2a35ffda114fd7accdd27ed934c3433e0bd"',
286 silly get 'content-encoding': 'gzip',
286 silly get age: '0',
286 silly get 'x-cache': 'HIT TCP_REFRESH_HIT dirn:-2:-2',
286 silly get 'x-swift-savetime': 'Sat, 01 Jun 2024 18:07:51 GMT',
286 silly get 'x-swift-cachetime': '300',
286 silly get 'timing-allow-origin': '*',
286 silly get eagleid: 'a3b5a0a317172652697998888e' } ]
287 verbose get saving socket.io-adapter to /www/server/nodejs/cache/registry.npmmirror.com/socket.io-adapter/.cache.json
288 verbose correctMkdir /www/server/nodejs/cache correctMkdir not in flight; initializing
289 silly resolveWithNewModule socket.io-adapter@2.5.4 checking installable status
290 silly cache add args [ 'socket.io-adapter@~2.5.2', null ]
291 verbose cache add spec socket.io-adapter@~2.5.2
292 silly cache add parsed spec Result {
292 silly cache add raw: 'socket.io-adapter@~2.5.2',
292 silly cache add scope: null,
292 silly cache add escapedName: 'socket.io-adapter',
292 silly cache add name: 'socket.io-adapter',
292 silly cache add rawSpec: '~2.5.2',
292 silly cache add spec: '>=2.5.2 <2.6.0',
292 silly cache add type: 'range' }
293 silly addNamed socket.io-adapter@>=2.5.2 <2.6.0
294 verbose addNamed ">=2.5.2 <2.6.0" is a valid semver range for socket.io-adapter
295 silly addNameRange { name: 'socket.io-adapter',
295 silly addNameRange range: '>=2.5.2 <2.6.0',
295 silly addNameRange hasData: false }
296 silly mapToRegistry name socket.io-adapter
297 silly mapToRegistry using default registry
298 silly mapToRegistry registry https://registry.npmmirror.com/
299 silly mapToRegistry data Result {
299 silly mapToRegistry raw: 'socket.io-adapter',
299 silly mapToRegistry scope: null,
299 silly mapToRegistry escapedName: 'socket.io-adapter',
299 silly mapToRegistry name: 'socket.io-adapter',
299 silly mapToRegistry rawSpec: '',
299 silly mapToRegistry spec: 'latest',
299 silly mapToRegistry type: 'tag' }
300 silly mapToRegistry uri https://registry.npmmirror.com/socket.io-adapter
301 verbose addNameRange registry:https://registry.npmmirror.com/socket.io-adapter not in flight; fetching
302 verbose get https://registry.npmmirror.com/socket.io-adapter not expired, no request
303 silly addNameRange number 2 { name: 'socket.io-adapter',
303 silly addNameRange range: '>=2.5.2 <2.6.0',
303 silly addNameRange hasData: true }
304 silly addNameRange versions [ 'socket.io-adapter',
304 silly addNameRange [ '2.3.3',
304 silly addNameRange '2.3.2',
304 silly addNameRange '2.3.1',
304 silly addNameRange '2.3.0',
304 silly addNameRange '2.2.0',
304 silly addNameRange '2.1.0',
304 silly addNameRange '2.0.3',
304 silly addNameRange '2.0.3-rc2',
304 silly addNameRange '2.0.3-rc1',
304 silly addNameRange '2.0.2',
304 silly addNameRange '2.0.1',
304 silly addNameRange '2.0.0',
304 silly addNameRange '1.1.2',
304 silly addNameRange '1.1.1',
304 silly addNameRange '1.1.0',
304 silly addNameRange '1.0.0',
304 silly addNameRange '0.5.0',
304 silly addNameRange '0.4.0',
304 silly addNameRange '0.3.1',
304 silly addNameRange '0.3.0',
304 silly addNameRange '0.2.0',
304 silly addNameRange '0.1.0',
304 silly addNameRange '2.4.0',
304 silly addNameRange '2.5.0',
304 silly addNameRange '2.5.1',
304 silly addNameRange '2.5.2',
304 silly addNameRange '2.5.3',
304 silly addNameRange '2.5.4' ] ]
305 silly addNamed socket.io-adapter@2.5.4
306 verbose addNamed "2.5.4" is a plain semver version for socket.io-adapter