Skip to main content
The Deno 2 Release Candidate is here
Learn more

subfocus

lens, focus and prism.

example

import { fromScheme } from "../mod.ts";

const scheme = {
  artists_sort: "artists",
  title: "title",
  community: {
    rating: {
      average: "average_rating",
    },
  },
};
const prism = fromScheme(scheme);

const url = "https://api.discogs.com/releases/19111147";
const resp = await fetch(url);
const json = await resp.json();

console.table(prism(json));
┌────────────────┬────────────────────────┐
│ (idx)          │ Values                 │
├────────────────┼────────────────────────┤
│ artists        │ "Sub Focus"            │
│ title          │ "Siren / Solar System" │
│ average_rating │ 4.92                   │
└────────────────┴────────────────────────┘

Rest API

deno run -A cmd/serve.ts
curl -X POST http://localhost:3000 -d '{"data":{"field":"value"},"scheme":{"field":"value"}}'
{"field":"value"}

dev

test

deno task test