0
Products Dashboard
One script reply has been approved by the moderators Verified

Dashboard for your products, stock levels and others

Created by adam186 613 days ago
Static preview only: No backend 
This is a static preview of the app and there is no backend. As such, the interactivity requiring script execution is non functional. To see the fully functional app, edit/run it in Windmil by clicking the button above.
Loading

Scripts used

export async function main() {
  const res = await fetch('https://dummyjson.com/products')
  const json = await res.json()
  return json.products.map((p: Record<string, any>) => {
    delete p.images
    delete p.thumbnail
    delete p.description
    return p
  })
}