> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Comenzi Frontend

## Comenzi utile

### Pornirea aplicației

```bash theme={null}
npx nx start twenty-front
```

### Regenerează schema graphql pe baza schemei graphql a API-ului

```bash theme={null}
npx nx run twenty-front:graphql:generate --configuration=metadata
```

SAU

```bash theme={null}
npx nx run twenty-front:graphql:generate
```

### Lint

```bash theme={null}
npx nx run twenty-front:lint # pass --fix to fix lint errors
```

## Traduceri

```bash theme={null}
npx nx run twenty-front:lingui:extract
npx nx run twenty-front:lingui:compile
```

### Test

```bash theme={null}
npx nx run twenty-front:test # run jest tests
npx nx run twenty-front:storybook:serve:dev # run storybook
npx nx run twenty-front:storybook:test # run tests # (needs yarn storybook:serve:dev to be running)
npx nx run twenty-front:storybook:coverage # (needs yarn storybook:serve:dev to be running)
```

## Tehnologii Utilizate

Proiectul are un stack curat și simplu, cu cod boilerplate minim.

**Aplicație**

* [React](https://react.dev/)
* [Apollo](https://www.apollographql.com/docs/)
* [GraphQL Codegen](https://the-guild.dev/graphql/codegen)
* [Jotai](https://jotai.org/)
* [TypeScript](https://www.typescriptlang.org/)

**Testare**

* [Jest](https://jestjs.io/)
* [Storybook](https://storybook.js.org/)

**Instrumente**

* [Yarn](https://yarnpkg.com/)
* [Craco](https://craco.js.org/docs/)
* [Oxlint](https://oxc.rs/docs/guide/usage/linter.html)

## Arhitectură

### Rutare

[React Router](https://reactrouter.com/) se ocupă de rutare.

Pentru a evita [re-redări](/l/ro/developers/contribute/capabilities/frontend-development/best-practices-front#managing-re-renders) inutile, toată logica de rutare se află în `useEffect` în `PageChangeEffect`.

### Managementul stării

[Jotai](https://jotai.org/) se ocupă de managementul stării.

Consultați [cele mai bune practici](/l/ro/developers/contribute/capabilities/frontend-development/best-practices-front#state-management) pentru mai multe informații despre managementul stării.

## Testare

[Jest](https://jestjs.io/) servește ca instrument pentru testarea unităților, în timp ce [Storybook](https://storybook.js.org/) este pentru testarea componentelor.

Jest este utilizat în principal pentru testarea funcțiilor utilitare, nu a componentelor în sine.

Storybook este pentru testarea comportamentului componentelor izolate, precum și pentru afișarea sistemului de design.
