Up and running in minutes
Define your resources and StratoAdmin generates fully functional list, create, edit, and show pages — all powered by AWS Cloudscape components.
Follow the tutorial →import { Admin, ResourceSchema, TextField } from '@strato-admin/admin';
import dataProvider from './dataProvider';
export default function App() {
return (
<Admin dataProvider={dataProvider}>
<ResourceSchema name="products">
<TextField source="reference" isRequired />
<TextField source="name" isRequired />
<TextField source="description" />
</ResourceSchema>
</Admin>
);
}
How it works
Install
Scaffold a new project with a single command and connect your data provider.
Define Resources
Declare your data model with a schema. StratoAdmin generates all CRUD pages automatically.
Deploy
Ship a production-ready admin app — auth, i18n, and branding included.
Declarative Code
Define what you want and let the framework handle the how. Strato Admin turns resource declarations into fully functional CRUD interfaces with minimal boilerplate.
Open Source
MIT licensed and built on the proven React Admin architecture. Transparent, community-driven, and free to use in any project.
Powered by Cloudscape
Built on AWS Cloudscape, the same design system used across AWS products. Your admin gets a polished, accessible UI with zero design work.
Schema-Driven
Define field types, labels, and relationships once in a schema. Lists, forms, and detail views all stay in sync — no repetition, no drift.