microsoft / vscode-edge-devtools

A VSCode extension that allows you to use browser devtools from within the editor. The devtools will connect to an instance of Microsoft Edge giving you the ability to alter CSS styling, perform diagnostics, and debugging. Get it now at http://aka.ms/devtools-for-code
https://docs.microsoft.com/microsoft-edge/visual-studio-code/microsoft-edge-devtools-extension
MIT License
745 stars 254 forks source link

Edge tools for vs code || node and npm #1145

Closed HeadmasterEggy closed 1 year ago

HeadmasterEggy commented 2 years ago

Ensure node and npm are installed to enable automatically reporting issues in source files pertaining to accessibility, compatibility, security, and more.

what is this? how can i solve this?

captainbrosset commented 2 years ago

Thanks for reaching out about this @HeadmasterEggy. In order to help the team answer the question, could you please provide a screenshot showing where you are seeing this message? That would be super helpful.

HeadmasterEggy commented 2 years ago

image idk.i just got this message as soon as i download this tool.

captainbrosset commented 2 years ago

@codepo8 is this something you can help with?

codepo8 commented 2 years ago

Sure, hi there. In order to see the functionality of issues you need both node and npm installed. You can get detailed information how to do that on https://nodejs.org/en/

hxlnt commented 2 years ago

I see another note from a user who is seeing this prompt despite Node.js and NPM already being installed.

See https://github.com/MicrosoftEdge/DevTools/issues/95, cc @BobFrankston

50Wliu commented 1 year ago

In my case, this is because npm failed to rename a file when installing a very nested dependency of hint (hint -> @hint/utils-network -> node-fetch -> whatwg-url), such that npm viewed the install as "complete" but any attempts to require hint would throw.

What I described above is an extreme edge case, but I think the crux of this issue is that the error message is misleading. There are many reasons that loading the hint module could fail, including:

Only one of those is currently covered by the error message (and even then, it doesn't direct you to the Node website, requiring you to do your own research).

Ideally, I'd like to see an explicit check for npm if installation fails, and if npm already exists, the error message should be more generic, with a button that pops up the logs that allow you to see exactly why the installation failed. If that sounds reasonable, I can create a PR to do that.

heguro commented 1 year ago

Saw the same error. I don't see a prompt to check the output of the extension, but a detailed error is shown in there.

Output of Microsoft Edge Tools ``` Trying to load shared version Found hint at c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js Error loading shared "hint" package Error: Cannot find module 'content-type' Require stack: - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\is-html-document.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\index.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\final-config.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\index.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\config\config-hints.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\engine.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js - c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.1\node_modules\vscode-webhint\dist\src\server.js at Module._resolveFilename (node:internal/modules/cjs/loader:987:15) at Module._load (node:internal/modules/cjs/loader:832:27) at c._load (node:electron/js2c/asar_bundle:5:13343) at Module.require (node:internal/modules/cjs/loader:1059:19) at require (node:internal/modules/cjs/helpers:102:18) at Object. (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\is-html-document.js:4:24) at Module._compile (node:internal/modules/cjs/loader:1165:14) at Module._extensions..js (node:internal/modules/cjs/loader:1220:10) at Module.load (node:internal/modules/cjs/loader:1035:32) at Module._load (node:internal/modules/cjs/loader:876:12) { code: 'MODULE_NOT_FOUND', requireStack: [ 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-network\\dist\\src\\is-html-document.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-network\\dist\\src\\index.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-json\\dist\\src\\final-config.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-json\\dist\\src\\index.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\hint\\dist\\src\\lib\\config\\config-hints.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\hint\\dist\\src\\lib\\engine.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\hint\\dist\\src\\lib\\index.js', 'c:\\Users\\user\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.1\\node_modules\\vscode-webhint\\dist\\src\\server.js' ] } Unable to load shared webhint instance Error: Cannot find module 'content-type' Require stack: - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\is-html-document.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\index.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\final-config.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\index.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\config\config-hints.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\engine.js - c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js - c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.1\node_modules\vscode-webhint\dist\src\server.js at Module._resolveFilename (node:internal/modules/cjs/loader:987:15) at Module._load (node:internal/modules/cjs/loader:832:27) at c._load (node:electron/js2c/asar_bundle:5:13343) at Module.require (node:internal/modules/cjs/loader:1059:19) at require (node:internal/modules/cjs/helpers:102:18) at Object. (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\is-html-document.js:4:24) at Module._compile (node:internal/modules/cjs/loader:1165:14) at Module._extensions..js (node:internal/modules/cjs/loader:1220:10) at Module.load (node:internal/modules/cjs/loader:1035:32) at Module._load (node:internal/modules/cjs/loader:876:12) { code: 'MODULE_NOT_FOUND', requireStack: [ 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-network\\dist\\src\\is-html-document.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-network\\dist\\src\\index.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-json\\dist\\src\\final-config.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\@hint\\utils-json\\dist\\src\\index.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\hint\\dist\\src\\lib\\config\\config-hints.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\hint\\dist\\src\\lib\\engine.js', 'c:\\Users\\user\\AppData\\Roaming\\Code\\User\\globalStorage\\ms-edgedevtools.vscode-edge-devtools\\node_modules\\hint\\dist\\src\\lib\\index.js', 'c:\\Users\\user\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.1\\node_modules\\vscode-webhint\\dist\\src\\server.js' ] } Installing shared version of "hint" Last check for "hint" updates was less than 24 hours ago, skipping Found hint at c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js ```

I fixed by:

(edit) I saw a different error Unable to start webhint. Ensure you are using the latest version of thehintpackage. 3 months ago and did the same thing to fix it.

zdaar commented 1 year ago

Saw the same error. I don't see a prompt to check the output of the extension, but a detailed error is shown in there.

Output of Microsoft Edge Tools I fixed by:

  • Open a terminal and navigate to C:/Users/[username]/AppData/Roaming/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools (depends on OS youre using)
  • Rename node_modules to node_modules_ or something
  • Run npm i -D
  • Reload vscode

(edit) I saw a different error Unable to start webhint. Ensure you are using the latest version of thehintpackage. 3 months ago and did the same thing to fix it.

This worked for me, annoying bug fixed thx !

lianyitj commented 1 year ago

Saw the same error. I don't see a prompt to check the output of the extension, but a detailed error is shown in there.

Output of Microsoft Edge Tools I fixed by:

  • Open a terminal and navigate to C:/Users/[username]/AppData/Roaming/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools (depends on OS youre using)
  • Rename node_modules to node_modules_ or something
  • Run npm i -D
  • Reload vscode

(edit) I saw a different error Unable to start webhint. Ensure you are using the latest version of thehintpackage. 3 months ago and did the same thing to fix it.

用这个方法解决了,谢谢!

uberkael commented 1 year ago

The workaround didn't work for me.

image

The logs show this error:

Trying to load shared version
Error loading shared "hint" package
Error [ERR_REQUIRE_ESM]: require() of ES Module /home/***/.config/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools/node_modules/node-fetch/src/index.js from /home/***/.config/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools/node_modules/@hint/utils-network/dist/src/request-async.js not supported.
Instead change the require of index.js in /home/***/.config/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools/node_modules/@hint/utils-network/dist/src/request-async.js to a dynamic import
Found hint at /home/***/.config/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools/node_modules/hint/dist/src/lib/index.js
Installing shared version of "hint"
Last check for "hint" updates was less than 24 hours ago, skipping
Found hint at /home/***/.config/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools/node_modules/hint/dist/src/lib/index.js
Boggin commented 1 year ago

I fixed this by disabling the extension.

ian-cowley commented 1 year ago

wants me to sponsor all these, so I'll just remove: https://github.com/chalk/ansi-styles?sponsor=1 https://github.com/chalk/chalk?sponsor=1 https://github.com/cheeriojs/dom-serializer?sponsor=1 https://github.com/fb55/domhandler?sponsor=1 https://github.com/fb55/domutils?sponsor=1 https://github.com/fb55/entities?sponsor=1 https://github.com/fb55/nth-check?sponsor=1 https://github.com/inikulin/parse5?sponsor=1 https://github.com/sindresorhus/file-type?sponsor=1 https://github.com/sindresorhus/got?sponsor=1 https://github.com/sindresorhus/is?sponsor=1 https://github.com/sponsors/Borewit https://github.com/sponsors/ai https://github.com/sponsors/epoberezkin https://github.com/sponsors/fb55 https://github.com/sponsors/feross https://github.com/sponsors/isaacs https://github.com/sponsors/jimmywarting https://github.com/sponsors/jonschlinkert https://github.com/sponsors/ljharb https://github.com/sponsors/sibiraj-s https://github.com/sponsors/sindresorhus https://github.com/yeoman/update-notifier?sponsor=1 https://opencollective.com/browserslist https://opencollective.com/core-js https://opencollective.com/node-fetch https://opencollective.com/postcss/ https://opencollective.com/typescript-eslint https://paulmillr.com/funding/

webia1 commented 1 year ago

node and npm are installed on the machine since they exist; even many different versions via "n" package manager). (sure, I admit that I have changed the machines a few times over the years, but every machine had node on it).

That this extension can't find npm at first sight is OK. What I don't find OK is that I can't turn this message off permanently. As soon as I open a new project or reload VSCode, the message appears (quite inconvenient when doing a live presentation).

Screenshot 2023-06-20 at 10 16 17

My solution was then to delete this extension permanently.

Cmeem commented 1 year ago

Saw the same error. I don't see a prompt to check the output of the extension, but a detailed error is shown in there.

Output of Microsoft Edge Tools I fixed by:

  • Open a terminal and navigate to C:/Users/[username]/AppData/Roaming/Code/User/globalStorage/ms-edgedevtools.vscode-edge-devtools (depends on OS youre using)
  • Rename node_modules to node_modules_ or something
  • Run npm i -D
  • Reload vscode

(edit) I saw a different error Unable to start webhint. Ensure you are using the latest version of thehintpackage. 3 months ago and did the same thing to fix it.

Thanks, unfortunately, it still creates the same issue after your instructions.

Even uninstalled the extension, removed node_modules folder manually, and reinstalled the extension — still the same bug.

I am about to delete extension if I can not find a way to fix it.

captainbrosset commented 1 year ago

Thank you all for sharing these details with us. This is tracked by the dev team, and we'll continue investigating this.

david-mateogit commented 1 year ago

Subscribing to this, like this extension a lot but this is really annoying.

ddbrierton commented 1 year ago

It’s unclear how many are affected by this. Do you want people saying “me too” or is the scope of the problem something already well-understood? (Me too, BTW.)

captainbrosset commented 1 year ago

In general, "me too"-type comments aren't very helpful on GitHub. They tend to make it hard to read through an issue. Adding a little thumbs-up reaction to the issue description does the same thing and is less intrusive. I think the scope of the problem is well-understood already. That being said, if anyone believes they have technical information to share that could help lead to a fix sooner, please do feel free to comment.

50Wliu commented 1 year ago

if anyone believes they have technical information to share that could help lead to a fix sooner

I don't think this has been mentioned yet - in @uberkael's error message, this part stands out to me: Error [ERR_REQUIRE_ESM]: require() of ES Module .../node-fetch/src/index.js not supported. I've started seeing this as well.

Which is most certainly because of https://github.com/webhintio/hint/issues/5614#issuecomment-1600499834 (aka, a bad hint version).

(Sidenote: I'd like to mention that once again, this "Ensure Node and npm are installed" message is misleading and isn't actionable if you do have npm installed)

captainbrosset commented 1 year ago

Thanks for the additional details!

Cmeem commented 1 year ago

The log in Output pane of the extension:

Error loading "hint" package from "c:\Users\user\OneDrive\Desktop\TestPoject"
Trying to load shared version
Error loading shared "hint" package
Error [ERR_REQUIRE_ESM]: require() of ES Module c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\node-fetch\src\index.js from c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\request-async.js not supported.
Instead change the require of index.js in c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\request-async.js to a dynamic import() which is available in all CommonJS modules.
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\request-async.js:4:22)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\index.js:24:14)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\final-config.js:6:25)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\index.js:13:14)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\config\config-hints.js:5:22)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\engine.js:11:24)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js:14:14)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at loadPackage (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:6141)
    at a (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:8713)
    at t.loadWebhint (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:9360)
    at t.Analyzer.initWebhint (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:3292)
    at t.Analyzer.validateTextDocument (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:3966)
    at c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:147226
    at o.invoke (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:35810)
    at i.fire (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:36571)
    at c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:121312
    at c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:27295
    at c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:27513
    at Immediate._onImmediate (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:29061) {
  code: 'ERR_REQUIRE_ESM'
}
Found hint at c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js
Installing shared version of "hint"
npm verb cli C:\Program Files\nodejs\node.exe C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js
npm info using npm@9.5.0
npm info using node@v18.14.2
npm verb title npm install @hint/configuration-development@latest hint@latest typescript@latest
npm verb argv "install" "@hint/configuration-development@latest" "hint@latest" "typescript@latest" "--save-dev" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:C:\Users\user\AppData\Local\npm-cache\_logs\2023-06-23T11_39_56_348Z-
npm verb logfile C:\Users\user\AppData\Local\npm-cache\_logs\2023-06-23T11_39_56_348Z-debug-0.log
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconfiguration-development 13976ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/hint 14033ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/typescript 16477ms (cache updated)
npm verb reify failed optional dependency c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\fsevents
npm http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/advisories/bulk 7574ms
npm http fetch GET 200 https://registry.npmjs.org/got 168ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/semver 534ms (cache updated)
npm http fetch GET 200 https://registry.npmjs.org/fast-xml-parser 938ms (cache updated)
npm http fetch GET 200 https://registry.npmjs.org/is-svg 4139ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/package-json 106ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/make-dir 193ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/semver-diff 1481ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/latest-version 102ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/configstore 124ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@mapbox%2fnode-pre-gyp 136ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/update-notifier 431ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2futils 1506ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/canvas 105ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconnector-jsdom 3002ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconnector-puppeteer 3120ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fformatter-json 4036ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2futils-network 4108ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-webpack-config 4874ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-image-optimization-cloudinary 4892ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-html-checker 4901ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fformatter-html 4914ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-ssllabs 6633ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fformatter-summary 6651ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-javascript 6673ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-bom 6689ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-typescript-config 6691ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-content-type 7753ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2futils-connector-tools 7768ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fformatter-stylish 8139ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-http-compression 9620ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconnector-local 9638ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-vulnerable-javascript-libraries 9655ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconfiguration-progressive-web-apps 11497ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-axe 11513ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconfiguration-accessibility 12742ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-css-prefix-order 13919ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-apple-touch-icons 13933ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-manifest-app-name 13799ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-http-cache 13821ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-manifest-file-extension 14756ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-meta-charset-utf-8 14773ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-highest-available-document-mode 14810ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-disallowed-headers 14795ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-detect-css-reflows 14977ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-babel-config 14990ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-manifest-is-valid 17049ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-leading-dot-classlist 17080ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-button-type 17214ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fconfiguration-web-recommended 17230ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-scoped-svg-styles 15845ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-compat-api 17240ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-html-only-headers 18068ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-sri 16853ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-webpack-config 17221ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-inline-styles 19319ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-manifest-exists 19380ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-friendly-error-pages 19332ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-protocol-relative-urls 18135ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-meta-viewport 19370ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-strict-transport-security 18109ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-x-content-type-options 18075ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-less 18855ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-typescript 18846ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-jsx 18907ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-validate-set-cookie-header 18989ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-sass 18868ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-stylesheet-limits 18998ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-css 18936ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-babel-config 18968ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-typescript-config 18880ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-html 19746ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-no-http-redirects 21067ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-disown-opener 21170ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fparser-manifest 19750ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2fhint-create-element-svg 22269ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@hint%2futils-json 3771ms (cache revalidated)

up to date, audited 612 packages in 2m

93 packages are looking for funding
  run `npm fund` for details

76 vulnerabilities (1 low, 75 moderate)

To address issues that do not require attention, run:
  npm audit fix

Some issues need review, and may require choosing
a different dependency.

Run `npm audit` for details.
npm verb exit 0
npm info ok 
Found hint at c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js
Unable to load shared webhint instance Error [ERR_REQUIRE_ESM]: require() of ES Module c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\node-fetch\src\index.js from c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\request-async.js not supported.
Instead change the require of index.js in c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\request-async.js to a dynamic import() which is available in all CommonJS modules.
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\request-async.js:4:22)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-network\dist\src\index.js:24:14)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\final-config.js:6:25)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\@hint\utils-json\dist\src\index.js:13:14)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\config\config-hints.js:5:22)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\engine.js:11:24)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at Object.<anonymous> (c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js:14:14)
    at f._load (node:electron/js2c/asar_bundle:2:13330)
    at loadPackage (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:6141)
    at a (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:9055)
    at async t.Analyzer.initWebhint (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:3270)
    at async t.Analyzer.validateTextDocument (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:3955)
    at async c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.2\node_modules\vscode-webhint\dist\src\server.js:1:147218 {
  code: 'ERR_REQUIRE_ESM'
}
vidorteg commented 1 year ago

Thanks everyone for their patience, this turned out to be two bugs:

Thanks for the reports and for the feedback,

zayne-wang commented 1 year ago

See the prompt again. the Output for Microsoft Edge Tools is shown below:

Error loading "hint" package from "c:\Users\user\Desktop\webpack-test"
Trying to load shared version
Error loading shared "hint" package
Error: Cannot find module 'hint'
Require stack:
- c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1129:15)
    at Function.resolve (node:internal/modules/cjs/helpers:116:19)
    at loadPackage (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:6070)
    at a (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:8713)
    at t.loadWebhint (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:9360)
    at t.Analyzer.initWebhint (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:3292)
    at t.Analyzer.validateTextDocument (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:3966)
    at c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:147226
    at o.invoke (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:35810)
    at i.fire (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:36571) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [
    'c:\\Users\\user\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.3\\node_modules\\vscode-webhint\\dist\\src\\server.js'
  ]
}
Installing shared version of "hint"
npm verb cli D:\opt\node\node.exe D:\opt\node\node_modules\npm\bin\npm-cli.js
npm info using npm@9.6.7
npm info using node@v18.17.1
npm verb title npm install @hint/configuration-development@latest hint@latest typescript@latest
npm verb argv "install" "@hint/configuration-development@latest" "hint@latest" "typescript@latest" "--save-dev" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:C:\Users\user\AppData\Local\npm-cache\_logs\2023-09-14T13_31_18_075Z-
npm verb logfile C:\Users\user\AppData\Local\npm-cache\_logs\2023-09-14T13_31_18_075Z-debug-0.log
npm http fetch GET 200 https://registry.npmmirror.com/typescript 63ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconfiguration-development 156ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/hint 158ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/optionator 161ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/chalk 165ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/globby 165ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/browserslist 169ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/setimmediate 164ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/lodash 168ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconfiguration-accessibility 201ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconnector-local 201ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-meta-charset-utf-8 198ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-highest-available-document-mode 200ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fformatter-json 236ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-sri 231ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fformatter-html 240ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-typescript-config 234ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-detect-css-reflows 244ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconfiguration-progressive-web-apps 250ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-disown-opener 256ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fformatter-summary 261ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-button-type 262ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-create-element-svg 262ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-leading-dot-classlist 264ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-compat-api 275ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-css-prefix-order 281ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-scoped-svg-styles 279ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-meta-viewport 282ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-protocol-relative-urls 281ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-bom 285ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-html 281ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-inline-styles 287ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-webpack-config 286ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-babel-config 286ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-css 289ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-less 287ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-sass 288ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-javascript 295ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-typescript-config 300ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils 300ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-types 296ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-jsx 306ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-babel-config 317ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-debug 303ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-webpack-config 305ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-fs 303ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-string 302ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-ci 299ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-json 306ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/eventemitter2 302ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-network 306ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fparser-typescript 312ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/os-locale 302ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ora 303ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/update-notifier 303ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconfiguration-web-recommended 303ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/strip-ansi 84ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/text-table 85ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/acorn-jsx 74ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/acorn-walk 74ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fs-extra 90ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/jsdom 94ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/parse5 53ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/acorn 83ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/parse5-htmlparser2-tree-adapter 55ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@typescript-eslint%2ftypescript-estree 61ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-i18n 176ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-dom 181ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/chokidar 181ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/postcss-safe-parser 170ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ejs 182ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/postcss 173ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2festree-jsx 172ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/postcss-sass 140ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/postcss-less 142ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/postcss-scss 142ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/metaviewport-parser 161ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/acorn-jsx-walk 173ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-compat-data 179ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-css 180ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/canvas 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/css-select 118ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/is-glob 107ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/semver 121ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/glob-parent 109ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/normalize-path 108ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fsevents 107ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/anymatch 114ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/array-union 107ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/node-fetch 115ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fast-glob 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/dir-glob 112ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/merge2 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/abab 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/slash 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/acorn-globals 109ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/decimal.js 109ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/cssstyle 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/data-urls 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/form-data 108ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ignore 115ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/domexception 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/http-proxy-agent 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/https-proxy-agent 109ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/escodegen 112ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/symbol-tree 108ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/is-potential-custom-element-name 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/nwsapi 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/saxes 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/w3c-xmlserializer 108ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/tough-cookie 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/braces 129ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/html-encoding-sniffer 116ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/whatwg-encoding 109ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/whatwg-url 108ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/webidl-conversions 111ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/xml-name-validator 108ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ws 110ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/whatwg-mimetype 117ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/content-type 160ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/configstore 162ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/https 153ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-binary-path 149ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fparse5 162ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-wsl 166ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/npm-registry-fetch 166ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/file-type 169ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-svg 170ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/readdirp 153ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/jsonc-parser 165ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/rrweb-cssom 141ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/debug 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/universalify 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/jsonfile 14ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/graceful-fs 15ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/jake 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ansi-styles 7ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ansi-regex 7ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/supports-color 8ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/postcss-selector-parser 30ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@mdn%2fbrowser-compat-data 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/mdn-data 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/postcss-value-parser 39ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/picocolors 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/source-map-js 31ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/nanoid 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ajv 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ajv-formats 27ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2festree 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/gonzales-pe 26ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/tsutils 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@typescript-eslint%2ftypes 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@typescript-eslint%2fvisitor-keys 28ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/make-dir 49ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/write-file-atomic 50ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/lru-cache 37ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/dot-prop 59ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/xdg-basedir 62ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/readable-web-to-node-stream 60ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/strtok3 61ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/unique-string 70ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/make-fetch-happen 70ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass-fetch 70ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass 72ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/proc-log 70ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/fast-xml-parser 78ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minizlib 72ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass-json-stream 74ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/token-types 82ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-docker 92ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/npm-package-arg 149ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/util-deprecate 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/cssesc 28ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ms 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/boolbase 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/css-what 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/domhandler 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/domutils 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/nth-check 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fast-deep-equal 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/require-from-string 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/uri-js 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/json-schema-traverse 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/encoding 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/is-extglob 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/eslint-visitor-keys 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/tslib 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/punycode 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/color-convert 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/has-flag 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/color-name 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/picomatch 14ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/picomatch 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fill-range 14ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/binary-extensions 32ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/to-regex-range 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/is-typedarray 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/signal-exit 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/typedarray-to-buffer 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/imurmurhash 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/crypto-random-string 36ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-obj 60ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/dom-serializer 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/domelementtype 8ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/entities 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/minimatch 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/filelist 29ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/async 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/readable-stream 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ieee754 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@tokenizer%2ftoken 32ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/peek-readable 32ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-number 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/path-type 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@nodelib%2ffs.walk 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/micromatch 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@nodelib%2ffs.stat 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fastq 7ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@nodelib%2ffs.scandir 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/reusify 8ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/run-parallel 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/queue-microtask 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/type-check 130ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/prelude-ls 132ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/node-releases 136ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/deep-is 132ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/update-browserslist-db 136ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ci-info 136ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/bl 125ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@aashutoshrathi%2fword-wrap 133ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fast-levenshtein 132ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/levn 133ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/caniuse-lite 142ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/electron-to-chromium 147ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/execa 133ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-html-checker 182ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fformatter-stylish 186ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconnector-jsdom 188ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fconnector-puppeteer 191ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-http-compression 192ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-content-type 198ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-strict-transport-security 193ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-x-content-type-options 192ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-validate-set-cookie-header 193ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-stylesheet-limits 203ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-http-cache 210ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-friendly-error-pages 208ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/log-symbols 186ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-disallowed-headers 210ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-html-only-headers 210ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-http-redirects 210ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/wcwidth 188ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-unicode-supported 189ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cli-spinners 192ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cli-cursor 193ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-interactive 192ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-ssllabs 212ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/pupa 185ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/lcid 195ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-yarn-global 188ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/mem 195ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-npm 190ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/import-lazy 191ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/latest-version 189ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-installed-globally 191ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/boxen 195ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/semver-diff 189ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/has-yarn 197ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-image-optimization-cloudinary 661ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2fhint-no-vulnerable-javascript-libraries 803ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/puppeteer-core 39ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/cloudinary 46ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@hint%2futils-connector-tools 63ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/lockfile 63ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/mutationobserver-shim 66ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/got 47ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/image-size 58ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/js-library-detector 250ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/simple-get 8ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/iconv-lite 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@mapbox%2fnode-pre-gyp 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/nan 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cross-fetch 22ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/proxy-from-env 20ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/pkg-dir 21ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/devtools-protocol 23ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/extract-zip 27ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/unbzip2-stream 24ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/progress 26ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/rimraf 25ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/tar-fs 26ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/cloudinary-core 34ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/queue 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/core-js 36ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/q 40ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/decompress-response 23ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fresponselike 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@sindresorhus%2fis 47ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cacheable-lookup 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fcacheable-request 48ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/responselike 47ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@szmarczak%2fhttp-timer 55ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/p-cancelable 50ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/http2-wrapper 54ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/lowercase-keys 55ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cacheable-request 61ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/safer-buffer 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/escalade 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/simple-concat 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/detect-libc 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/once 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/nopt 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/tar 36ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/npmlog 39ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/agent-base 33ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/yallist 23ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/chownr 30ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/mkdirp 28ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/glob 32ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/are-we-there-yet 48ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/console-control-strings 52ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/fs-minipass 53ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/abbrev 62ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/gauge 61ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/set-blocking 73ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/tr46 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/get-stream 30ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fnode 34ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/keyv 36ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/mimic-response 35ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/normalize-url 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fhttp-cache-semantics 50ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/clone-response 47ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/defer-to-connect 57ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/http-cache-semantics 52ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/quick-lru 51ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/resolve-alpn 52ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fkeyv 60ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/json-buffer 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/pump 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/end-of-stream 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/inherits 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/strnum 28ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/brace-expansion 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/bufferutil 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/utf-8-validate 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/source-map 37ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/estraverse 41ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/mime-types 38ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/esutils 43ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/asynckit 41ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/esprima 43ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/xmlchars 36ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/combined-stream 43ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@tootallnate%2fonce 41ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/url-parse 35ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/psl 37ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/mime-db 10ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/delayed-stream 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/balanced-match 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/concat-map 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/socks-proxy-agent 39ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/hosted-git-info 33ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/cacache 64ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-lambda 77ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ssri 74ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/agentkeepalive 85ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/jsonparse 82ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass-sized 86ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass-flush 91ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/validate-npm-package-name 82ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/negotiator 92ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/promise-retry 91ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass-pipeline 1107ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/retry 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/socks 15ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/p-map 42ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@npmcli%2ffs 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/err-code 39ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minipass-collect 50ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/unique-filename 57ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/humanize-ms 80ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/foreground-child 37ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/aggregate-error 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/path-scurry 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/unique-slug 36ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/jackspeak 41ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cross-spawn 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@isaacs%2fcliui 29ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/@pkgjs%2fparseargs 31ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/path-key 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/shebang-command 9ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/which 8ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/shebang-regex 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/isexe 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/wrap-ansi 8ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/string-width 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/wrap-ansi 11ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/string-width 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/is-fullwidth-code-point 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/emoji-regex 14ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/emoji-regex 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/eastasianwidth 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/builtins 24ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/aproba 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/delegates 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/color-support 34ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/has-unicode 36ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/wide-align 40ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/object-assign 57ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/string_decoder 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/buffer 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/restore-cursor 29ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/defaults 30ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/base64-js 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/onetime 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/strip-final-newline 15ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/merge-stream 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/human-signals 18ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/is-stream 18ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/mimic-fn 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/npm-run-path 20ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/p-is-promise 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/invert-kv 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/map-age-cleaner 49ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/p-defer 25ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/clean-stack 28ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/indent-string 27ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/minimist 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/wrappy 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/find-up 15ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/yauzl 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/@types%2fyauzl 17ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/mkdirp-classic 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/through 12ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/tar-stream 14ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fd-slicer 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/buffer-crc32 7ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/locate-path 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/path-exists 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/p-locate 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/p-limit 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/p-try 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/safe-buffer 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fs.realpath 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/inflight 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/path-is-absolute 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/smart-buffer 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ip 7ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/fs-constants 3ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/querystringify 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/requires-port 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/camelcase 26ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/type-fest 26ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/ansi-align 47ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/cli-boxes 47ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/global-dirs 40ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/widest-line 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/package-json 41ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/escape-goat 41ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/is-path-inside 48ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/ini 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/registry-auth-token 28ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/registry-url 28ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/rc 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/rc 13ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/url-parse-lax 32ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/duplexer3 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/to-readable-stream 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/strip-json-comments 4ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/deep-extend 6ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/clone 25ms (cache revalidated)
npm http fetch GET 200 https://registry.npmmirror.com/pend 5ms (cache hit)
npm http fetch GET 200 https://registry.npmmirror.com/prepend-http 26ms (cache revalidated)
npm verb type range
npm verb stack @hint/configuration-accessibility: No matching version found for @hint/configuration-accessibility@^2.0.27.
npm verb stack     at module.exports (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\node_modules\npm-pick-manifest\lib\index.js:209:23)
npm verb stack     at RegistryFetcher.manifest (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\node_modules\pacote\lib\registry.js:119:22)
npm verb stack     at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
npm verb stack     at async Promise.all (index 0)
npm verb stack     at async #buildDepStep (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\node_modules\@npmcli\arborist\lib\arborist\build-ideal-tree.js:1034:5)
npm verb stack     at async Arborist.buildIdealTree (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\node_modules\@npmcli\arborist\lib\arborist\build-ideal-tree.js:196:7)
npm verb stack     at async Promise.all (index 1)
npm verb stack     at async Arborist.reify (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\node_modules\@npmcli\arborist\lib\arborist\reify.js:159:5)
npm verb stack     at async Install.exec (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\lib\commands\install.js:147:5)
npm verb stack     at async module.exports (D:\opt\src\node-v18.17.1-win-x64\node_modules\npm\lib\cli.js:89:5)
npm verb cwd c:\Users\user\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools
npm verb Windows_NT 10.0.22621
npm verb node v18.17.1
npm verb npm  v9.6.7
npm ERR! code ETARGET
npm ERR! notarget No matching version found for @hint/configuration-accessibility@^2.0.27.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm verb exit 1
npm verb unfinished npm timer reify 1694698278375
npm verb unfinished npm timer reify:loadTrees 1694698278378
npm verb code 1

npm ERR! A complete log of this run can be found in: C:\Users\user\AppData\Local\npm-cache\_logs\2023-09-14T13_31_18_075Z-debug-0.log
Unable to install shared webhint instance Error: NoExitCodeZero
    at ChildProcess.<anonymous> (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:7514)
    at ChildProcess.emit (node:events:513:28)
    at ChildProcess._handle.onexit (node:internal/child_process:291:12)
Unable to load shared webhint instance Error: Cannot find module 'hint'
Require stack:
- c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1129:15)
    at Function.resolve (node:internal/modules/cjs/helpers:116:19)
    at loadPackage (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:6070)
    at a (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:9055)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async t.Analyzer.initWebhint (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:3270)
    at async t.Analyzer.validateTextDocument (c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:3955)
    at async c:\Users\user\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.3\node_modules\vscode-webhint\dist\src\server.js:1:147218 {
  code: 'MODULE_NOT_FOUND',
  requireStack: [
    'c:\\Users\\user\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-2.1.3\\node_modules\\vscode-webhint\\dist\\src\\server.js'
  ]
}