Show HN: Airplane Views – code-first platform for building internal UIs
Hi HN, I'm Josh, one of the founders of Airplane! Airplane Views is our take on building internal tool UIs and is the newest component of our platform (alongside Tasks and Workflows). With Views, you can build admin dashboards, product usage charts, moderation inboxes, and more with just a few React components on a page. Views pair well with Tasks (our Lambda-like functions service)—you can write Tasks to fetch a list of customers or suspend a user, and hook them up to e.g. a Table or Button: import { Button, Stack, Table } from "airplane"; const AdminPanel = () => ( <Stack> <Table task="list_new_teams" /> <Button task="suspend_user">Suspend</Button> </Stack> ); Internal tools tend to be under-invested yet power core parts of businesses. We want to help tools reach the same level of rigor as production software, and we believe using code is the right approach. Need to re-use some logic? Import it. Need a
DeepCamp AI