Skip to main content
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: Many third-party module will be supported by the mean of custom import replacer //located here: https://github.com/garronej/denoify/tree/master/src/bin/replacer //it is also possible to write your custom replacers, documentation on the mater coming soon. }}