ibm-messaging / mq-mqi-nodejs

Calling IBM MQ from Node.js - a JavaScript MQI wrapper
Apache License 2.0
79 stars 41 forks source link

long npm install without information what is going on #136

Closed freerider7777 closed 2 years ago

freerider7777 commented 2 years ago

windows 11, node.js 16.13.1 when doing npm install it "hangs" in such state (I suppose downloading IBMMQ redist libraries) but it's not obvious what's going on:

image

after several minutes all is ok: image

It's strange, but on windows 10, node 14.18.1 I see the message about downloading: image

ibmmqmet commented 2 years ago

See, for example, https://github.com/npm/feedback/discussions/592

This appears to be a change in NPM, not something this repo has any control over. Running npm --foreground-scripts install does show the output, though I understand that's not the default. You can change the default behaviour for future installs with npm config set foreground-scripts=true

freerider7777 commented 2 years ago

Thanks for the detailed information!