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", "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 "url": "https://deno.land/std/node/url.ts", "assert": "https://deno.land/std/node/assert.ts", "crypto": "https://deno.land/std/node/crypto.ts", //Very partial "stream": "https://deno.land/std/node/stream.ts", "child_process": "https://deno.land/std/node/child_process.ts", "console": "https://deno.land/std/node/console.ts" /* Important: built in missing: http, https... 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. /* Unfortunately, you still have to use //@ts-ignore when using Reflect.getMetadata('design:paramtypes', target, key); or other reflect-metadata feature. There is currently no way of loading the types definitions in Deno. See: https://github.com/ovesco/diosaur/pull/4 */ "reflect-metadata": "https://raw.githubusercontent.com/rbuckton/reflect-metadata/master/Reflect.js" /* 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. */ }}