How to connect VPN using nodejs in ubuntu
问题 I have the code in my nodejs file which gives me the following information host:"147.0.40.145" method:"aes-256-cfb" password:"9c359ad1ebeec200" port:38473 I need to use above information and want to connect VPN through it. I have used below code to extract the above information. const connectServer = (serverId) => { const token = store('access_token') httpOptions.Authorization = token.token_type+' '+token.access_token return new Promise((resolve, reject) => { const response = await axios.post