Error "CERT_UNTRUSTED" in Atom

When I try to view, update or download any packages on GitHub Atom , I get the message "CERT_UNTRUSTED". I am behind the corporate firewall.

Is there a way to disable strict NPM SSL settings inside Atom to allow it to process packets?

+4
source share
2 answers

As described here , Atom's own package manager is called APM. Add the following line to the configuration file "~ / .atom / .apmrc": (create a file if it does not exist):

strict-ssl = false
+16
source
0

Source: https://habr.com/ru/post/1568365/


All Articles