Module

x/denoify/known-ports.jsonc

🦕For NPM module authors that would like to support Deno but do not want to write and maintain a port.
Go to Latest
File
{ "builtins": { "events": "https://deno.land/std/node/events.ts", "fs": "https://deno.land/std/node/fs.ts", //Partial "os": "https://deno.land/std/node/os.ts", //Partial "path": "https://deno.land/std/node/path.ts", "process": "https://deno.land/std/node/process.ts", //Partial "querystring": "https://deno.land/std/node/querystring.ts", "timers": "https://deno.land/std/node/timers.ts", "util": "https://deno.land/std/node/util.ts", //Partial "global": "https://deno.land/std/node/global.ts", "buffer": "https://deno.land/std/node/buffer.ts" //Partial /* Important: built in missing: http, https, stream... Follow evolution of support here: https://deno.land/std/node/README.md __filename and __dirname supported. */ }, "third_party": { "js-yaml": "https://deno.land/x/js_yaml_port/js-yaml.js", "ts-md5": "garronej/ts-md5" //It is a denoified module, we just need to point to the repo. /* NOTE: react, react-dom, rxjs and other modules are supported via custom import replacer. Checkout the complete list here: https://github.com/garronej/denoify/tree/master/src/bin/replacer More module coming soon. */ }}