国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > 综合技术 > 当使用apm遇到问题时常用的apm命令

当使用apm遇到问题时常用的apm命令

来源:程序员人生   发布时间:2016-06-15 08:23:56 阅读次数:2580次

Set proxy for ‘apm’:

apm config set ftp-proxy ftp://proxy:8080 apm config set http-proxy http://proxy:8080 apm config set https-proxy https://proxy:8080 apm config set proxy http://proxy:8080 apm config set strict-ssl=false

-or try this-

npm config set registry "http://registry.npmjs.org/" npm --proxy http://username:password@proxy...:port install <package name> export ATOM_NODE_URL=http://gh-contractor-zcbenz.s3.amazonaws.com/atom-shell/dist

Show customized settings:

apm config list Show all default settings: npm config ls -l

Edit configuration file directly:

apm config edit

Set proxy for ‘node-gyp’:

node-gyp configure --proxy=http://proxy:8080

Edit settings directly

in Windows:

notepad %userprofile%\.npmrc

-or-

notepad %userprofile%\.atom\.apmrc

in Linux:

vi ~/.npmrc

-or-

vi ~\.atom\.apmrc

File contents:

ftp-proxy=http://proxy:8088 http-proxy=http://proxy:8088 https-proxy=http://proxy:8088 proxy=http://proxy:8088 strict-ssl=false

Check where ‘apm’ stores it’s settings:

apm link
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生