block_hacks
How to set proxy to overall all requests coming from application?
In Node JS, we can
import https
and set https.proxy = "proxyDetails
However, I couldn't find a way to do so in Deno. I even tried to run node js child_process app with proxy over Deno, still not possible.10 replies
How can I import https://github.com/ensdomains/ensjs-v3/tree/main in my deno
This is npm package. I want to use it in my deno project. How can I achive it? I am trying this:
import { ENS } from "https://raw.githubusercontent.com/ensdomains/ensjs-v3/main/packages/ensjs/src/index.ts";
However, I am having error: error: Relative import path "@ethersproject/contracts" not prefixed with / or ./ or ../
at https://raw.githubusercontent.com/ensdomains/ensjs-v3/main/packages/ensjs/src/index.ts:4:8
7 replies