johnsmith0209
johnsmith0209
+1 同报了`404` ``` node-pre-gyp http 404 https://github.com/yanyiwu/nodejieba/releases/download/2.4.0/nodejieba-v2.4.0-node-v72-darwin-x64.tar.gz node-pre-gyp WARN Tried to download(404): https://github.com/yanyiwu/nodejieba/releases/download/2.4.0/nodejieba-v2.4.0-node-v72-darwin-x64.tar.gz node-pre-gyp WARN Pre-built binaries not found for [email protected] and [email protected] (node-v72 ABI, unknown) (falling back to source...
Same here, but get error messages [email protected] [email protected] ```javascript const agent = new http2Wrapper.proxies.HttpOverHttp2({ proxyOptions: { url: `http://127.0.0.1:10809`, rejectUnauthorized: false, } }); const options = { url: 'https://httpbin.org/ip', http2: true,...
So, I used the wrong `proxy class`. The followed worked for me: ```javascript const agent = new http2Wrapper.proxies.Http2OverHttp({ proxyOptions: { url: `http://127.0.0.1:10809`, rejectUnauthorized: false, } }); const options = {...