import { Handlers } from "$fresh/server.ts"; export const handler: Handlers = { async GET(_req, ctx) { const registryResponse = await fetch('https://registry.npmjs.org/@angular/core'); const data = await registryResponse.json(); return Response.json({data}); }, };