Hacker News new | ask | show | jobs
by WuxiFingerHold 821 days ago
My thoughts as well:

  const response = await fetch("https://api.github.com/orgs/golang/repos");
  const repos = await response.json();

  const groups = Map.groupBy(repos, e => e?.license?.key);
  ...