1 comments

  • telui2 hours ago
    Hi Hacker News — I’m releasing *Essential CDN (E.CDN)* as a beta.<p>Most developer CDNs stop at JavaScript. E.CDN is meant to be a simple, versioned “app-store CDN” for *more than JS*, including:<p>* *JS libraries* (e.g., jQuery versions side-by-side) * *Scripts that can run in the terminal from a site without downloads.*<p>Everything is served with predictable, versioned paths so you can pin exactly what you want.<p>I also built *Essential Jaws (ejaws)*: a tiny runner that lets you stream a script from the web and execute it immediately from one terminal session (no saving an installer script to disk first).<p>*Examples*<p>JS Libs:<p>```html &lt;script src=&quot;https:&#x2F;&#x2F;essentialcdn.fluidity.workers.dev&#x2F;jquery&#x2F;3.7.1&#x2F;jquery.min.js&quot;&gt;&lt;&#x2F;script&gt; &lt;script src=&quot;https:&#x2F;&#x2F;essentialcdn.fluidity.workers.dev&#x2F;jquery&#x2F;4.0.0&#x2F;jquery.min.js&quot;&gt;&lt;&#x2F;script&gt; ```<p>Essential Jaws 1:<p>```powershell # Windows (recommended): stream and run ejaws iwr -useb <a href="https:&#x2F;&#x2F;essentialcdn.fluidity.workers.dev&#x2F;ejaws&#x2F;1.0.0&#x2F;ejaws.ps1" rel="nofollow">https:&#x2F;&#x2F;essentialcdn.fluidity.workers.dev&#x2F;ejaws&#x2F;1.0.0&#x2F;ejaws....</a> | iex ```<p>Repo &#x2F; docs:<p>```text <a href="https:&#x2F;&#x2F;gitlab.com&#x2F;kryptonitewing&#x2F;essential.cdn" rel="nofollow">https:&#x2F;&#x2F;gitlab.com&#x2F;kryptonitewing&#x2F;essential.cdn</a> ```<p>It’s beta, so I’d love feedback on: URL conventions, what packages&#x2F;tools to add next, and what would make you trust a “stream-to-run” workflow more (checksums, signatures, pinned tags, etc.).