Access the modules on GitHub via Deno Deploy
https://pax.deno.dev/<owner>/<repo>[@branch_or_tag]/[path/to/file] redirects
to
https://raw.githubusercontent.com/<owner>/<repo>/[branch_or_tag]/[path/to/file].
ownerandrepoare required.@branch_or_tagandpath/to/fileare optional.- If
@branch_or_tagis skipped, usemasterimplicitly. This works well even if your default branch ismain. - If
path/to/fileis skipped, usemod.tsimplicitly.
- If
Use this bookmarklet in the GitHub repository page to copy URL to
pax.deno.dev.
javascript:((d)=>((c,b,l)=>{c.textContent=(([,r="",,,t,f=""])=>`https://pax.deno.dev/${r}${t?"@"+t:""}${f}`)((l.origin+l.pathname).match(/^https:\/\/github\.com\/([^\/]+\/[^\/]+)(\/(tree|blob)\/([^\/]+))?(\/.*)?/)||[]);b.appendChild(c);c.select();d.execCommand("copy");b.removeChild(c);})(d.createElement("textArea"),d.body,location))(document)
import { func } from "https://pax.deno.dev/owner/repo";
# same as:
# import { func } from "https://raw.githubusercontent.com/owner/repo/master/mod.ts";import { func } from "https://pax.deno.dev/owner/repo/path/to/file.ts";
# same as:
# import { func } from "https://raw.githubusercontent.com/owner/repo/master/path/to/file.ts";import { func } from "https://pax.deno.dev/owner/repo@tag";
# same as:
# import { func } from "https://raw.githubusercontent.com/owner/repo/tag/mod.ts";import { func } from "https://pax.deno.dev/owner/repo@tag/path/to/file.ts";
# same as:
# import { func } from "https://raw.githubusercontent.com/owner/repo/tag/path/to/file.ts";With the parameter d, the link to doc.deno.land is
generated. The main part of URL should follow the syntax above.
https://pax.deno.dev/owner/repo?d
# same as:
# https://doc.deno.land/https/raw.githubusercontent.com/owner/repo/master/mod.ts
With the parameter b (mnemonic 'browser'), a pdf will be displayed in browser
instead of being downloaded. This flag does not affect other file types. The
main part of URL should follow the syntax above.
https://pax.deno.dev/owner/repo/somefile.pdf?b
- This project is heavily inspired by Deno PKG.




