Ask Questions and Find Answers
Important:
Ask is now read-only. You can review any existing questions and answers, but not add anything new.
But - don't panic! While ask is no more, we've replaced it with discuss - the new Liferay Discussion Forum! Read more here here or just visit the site here:
discuss.liferay.com
RE: How to turn off proxy with blade?
How can I turn of the proxy settings on my machine for npm? I tried to remove the proxy settings from my .npmrc file to no avail. I am using this command:
> blade gw wrapper
see also:https://dev.liferay.com/es/develop/tutorials/-/knowledge_base/7-0/blade-cli
In the console I get this 'npm' error:
> blade gw wrapper
see also:https://dev.liferay.com/es/develop/tutorials/-/knowledge_base/7-0/blade-cli
In the console I get this 'npm' error:
Harry Lulkoek:
How can I turn of the proxy settings on my machine for npm? I tried to remove the proxy settings from my .npmrc file to no avail. I am using this command:
> blade gw wrapper
see also:https://dev.liferay.com/es/develop/tutorials/-/knowledge_base/7-0/blade-cli
In the console I get this 'npm' error:
Hi Harry.
Can you try this?
//allows you to list all the values you have set
npm config ls -l
//get the specific values configured
npm config get https-proxy
npm config get proxy
//delete them if it has any value
npm config delete proxy
npm config delete https-proxy
//verify its value again
npm config get https-proxy
npm config get proxy
//Another way is by erasing directly in from the file
npm config edit