Closed claytongulick closed 6 years ago
Looks like the issue was a npm one? It's fixed itself. Disregard :D
I'm having the same problem now verbose also showing same result
Ran into this issue from a package that had aframe
as a dependency. For me npm install --verbose
helped show that files were downloading; however, it does not show the various postinstall
or other steps that are running for some packages.
Amazingly, npm install
took over 11 minutes on a very new 2021 Apple M1 (Max) CPU and 1Gb fiber Internet access!
There are some stackoverflow threads on the topic:
The fastest alternative to waiting I found was to simply use yarn
to install the package instead of npm
.
via npx:
npx yarn install
or the global install method:
sudo npm install -g yarn
yarn install
Description: when doing npm install --save aframe on windows, the installation freezes. Looking at the verbose output, it looks like the freeze happens on a dependency: document-register-element. Tracing into that, it looks like document-register-element has a post-install script called lightercollective that some sort of donation thing?
Is the polyfill for custom elements v1 even necessary any more?