Denorg X (https://x.den.org.in) is a mirror of deno.land/x for third-party Deno modules. It's served from GitHub Pages with a Cloudflare CDN.
- Currently only supports the
masterbranch (e.g., https://x.den.org.in/abc/mod.ts)
- We fetch all packages from Deno's database every day
- We download them and serve them from the
gh-pagesbranch - We cache them for 24 hours, both in your browser and on our CDN:
- Page rule:
x.den.org.in/* - Browser Cache TTL: 24 hours
- Cache Level: Cache Everything
- Edge Cache TTL: 24 hours
- You import a package from its URL: https://x.den.org.in/abc/mod.ts
import { Application } from "https://x.den.org.in/abc/mod.ts" const app = new Application(); app .get("/hello", (c) => { return "Hello, Abc!"; }) .start({ port: 8080 });