In-project generation
Generate FSD slices
Use the v2 generator to create typed FSD slices directly inside an existing project. The CLI detects whether your app uses a `src/` directory and writes files to the matching FSD layer.
Syntax
npx create-fsd-architecture --generate <type> <name>npx create-fsd-architecture -g <type> <name>Command examples
npx create-fsd-architecture --generate feature auth
npx create-fsd-architecture -g feature checkout-flow
npx create-fsd-architecture --generate feature product-filters
npx create-fsd-architecture --generate entity product
npx create-fsd-architecture -g entity order
npx create-fsd-architecture --generate widget navbar
npx create-fsd-architecture -g widget dashboard-sidebar
npx create-fsd-architecture --generate page checkoutExamples by slice type
Feature example
featureUse this for user actions and business interactions such as auth, checkout, filters, search, or forms.
npx create-fsd-architecture --generate feature authsrc/features/auth/
├── ui/
├── model/
└── index.tsEntity example
entityUse this for business objects such as product, user, order, brand, category, or cart item.
npx create-fsd-architecture --generate entity productsrc/entities/product/
├── ui/
├── model/
└── index.tsWidget example
widgetUse this for composed UI blocks such as navbar, sidebar, header, product grid, or checkout summary.
npx create-fsd-architecture --generate widget navbarsrc/widgets/navbar/
├── ui/
└── index.tsPage example
pageUse this for route-level page compositions such as checkout, profile, catalog, or dashboard.
npx create-fsd-architecture --generate page checkoutsrc/pages/checkout/
├── ui/
└── index.tsOverwrite examples
The generator protects existing slices unless you explicitly pass `--force`.
npx create-fsd-architecture --generate feature auth --force
npx create-fsd-architecture -g widget navbar --forceSupported types
Overwrite behavior
Existing slices are protected by default. Pass `--force` when you intentionally want to overwrite a generated slice.
Generator behavior
Generated paths
Project with src/
src/features/auth/
src/entities/product/
src/widgets/navbar/
src/pages/checkout/Project without src/
features/auth/
entities/product/
widgets/navbar/
pages/checkout/Feature presets
When generating a generic feature, the CLI asks what the feature will use.
Feature preset examples
? What will this feature use?
> API: Axios + React Query
Creates API helpers, React Query hooks, typed request files, UI entry points,
and a public index.ts export.? What will this feature use?
> Local State: Zustand
Creates a local store, typed actions/state, UI entry points,
and a public index.ts export.? What will this feature use?
> Global State: Redux Toolkit
Creates a slice, actions/selectors, UI entry points,
and a public index.ts export.? What will this feature use?
> UI only
Creates a typed React component, styles-ready structure,
and a public index.ts export.