Tag: 隧道

npm install – >隧道套接字无法build立

这个错误信息在堆栈溢出已经被回答了好几次,但是所有的解决scheme都不适合我。 每当我做npm install我得到以下消息: npm ERR! network tunneling socket could not be established, statusCode=407 npm ERR! network This is most likely not a problem with npm itself npm ERR! network and is related to network connectivity. npm ERR! network In most cases you are behind a proxy or have bad network settings. npm ERR! network npm […]

当使用tunnel-ssh时,'TypeError:Object不是函数'

我正在运行stream行的NPM软件包tunnel-ssh的教程中的基本示例。 这里是代码: var tunnel = require('tunnel-ssh'); var config = { username:'root', password:'secret', host:'remote.mysql.server.com', port:3306 } tunnel(config, function(e, sshTunnel){ //Now, you should be able to connect to the tunnel via localhost:3336. }); 当然,我使用自己的数据库的凭据来运行它。 不过,我运行时总是遇到这个错误: TypeError: object is not a function 有人知道发生了什么事?