> For the complete documentation index, see [llms.txt](https://www.ngxs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.ngxs.io/introduction/schematics.md).

# SCHEMATICS

This page lists all the different schematics that can be used to generate NGXS Starter-Kit, Store, Actions and State.

## Starter Kit

The Starter Kit provides a pre-configured NGXS setup that includes a Store, State, Actions, and selectors.

See the [Starter Kit Page](/introduction/starter-kit.md) to learn more.

## Store

The store is a global state manager that dispatches actions your state containers listen to and provides a way to select data slices out from the global state.

See the [Store Schematics Page](/concepts/store/schematics.md) to learn more.

## Actions

Actions can either be thought of as a command which should trigger something to happen, or as the resulting event of something that has already happened.

See the [Action Schematics Page](/concepts/actions/schematics.md) to learn more.

## State

States are classes that define a state container.

See the [State Schematics Page](/concepts/state/schematics.md) to learn more.
