static object store, read-only, CORS enabled

manifest

curl https://ezrakruger.cc/silo/manifest.json

fetch an object

curl https://ezrakruger.cc/silo/pkg/<ID> -o <ID>

fetch its thumbnail

curl https://ezrakruger.cc/silo/thumb/<ID>.png -o thumb.png

from javascript

// CORS-open
const ix = await fetch('https://ezrakruger.cc/silo/manifest.json').then(r=>r.json());
const obj = await fetch(`https://ezrakruger.cc/silo/pkg/${ix.items[0].id}`).then(r=>r.arrayBuffer());

IDs come from the manifest. No directory listing, not indexed.