forked from himanshub16/ProxyMan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode-yarn.sh
58 lines (48 loc) · 1.33 KB
/
node-yarn.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash
# plugin to set "yarn" (nodejs) proxy settings for ProxyMan
# privileges has to be set by the process which starts this script
list_proxy() {
echo
echo "${bold}yarn proxy settings : ${normal}"
echo "http $(yarn config get proxy)"
echo "https $(yarn config get https-proxy)"
if [[ $(yarn config get strict-ssl) = "true" && $(yarn config get proxy) != "null" ]]; then
echo "${bold}${red} strict-ssl is true. Would recommend to set it false"
echo "> ${white} yarn config set strict-ssl false ${normal}"
fi
}
unset_proxy() {
yarn config delete proxy
yarn config delete https-proxy
}
set_proxy() {
local stmt=""
if [ "$use_auth" = "y" ]; then
stmt="${username}:${password}@"
fi
# caution: do not use / after stmt
yarn config set proxy "http://${stmt}${http_host}:${http_port}/"
if [ "$USE_HTTP_PROXY_FOR_HTTPS" = "true" ]; then
yarn config set https-proxy "http://${stmt}${http_host}:${http_port}/"
else
yarn config set https-proxy "https://${stmt}${https_host}:${https_port}/"
fi
}
which yarn &> /dev/null
if [ "$?" != 0 ]; then
exit
fi
if [ "$#" = 0 ]; then
exit
fi
what_to_do=$1
case $what_to_do in
set) set_proxy
;;
unset) unset_proxy
;;
list) list_proxy
;;
*)
;;
esac