Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 613 Bytes

proxy.md

File metadata and controls

23 lines (17 loc) · 613 Bytes

Proxy

Some modules in the standard deno library do not have a mod.ts file.

When installing a standard library module, a request is made to deno.land/std/moduleName/mod.ts to be able to cache the module. the solution we have is to create a bridge between the request to download the module and the files in the library.

proxy

in the proxy folder are the bridges of the modules that do not have the mod.ts file.

these are the modules that use proxy

  • _util
  • archive
  • encoding
  • fmt
  • node
  • testing
  • wasi