[API reference](https://evolu.dev/docs/api-reference) › [@evolu/common](https://evolu.dev/docs/api-reference/common) › [local‑first/Evolu](https://evolu.dev/docs/api-reference/common/local-first/Evolu) › AppName

```ts
const AppName:  brand(
  "AppName",
  UrlSafeString,
  (value) =>
    value.length >= 1 && value.length <= 41
      ? ok()
      : err<AppNameError>({ type: "AppName", value }),
  (error) =>
    The value ${JSON.stringify(error.value)} is not between 1 and 41 characters.,
) ;
```

Defined in: [packages/common/src/local-first/Evolu.ts:297](https://github.com/evoluhq/evolu/blob/037c390af081e9944d616ff298a729515c5c5ab7/packages/common/src/local-first/Evolu.ts#L297)

Application name.

Evolu uses AppName as the base prefix for [Evolu.name](https://evolu.dev/docs/api-reference/common/local-first/Evolu/interfaces/Evolu#name). The final
instance name is derived per [AppOwner](https://evolu.dev/docs/api-reference/common/local-first/Owner/interfaces/AppOwner) as
`${appName}-${createIdFromString(appOwner.id)}`.

Uses the same safe alphabet as [UrlSafeString](https://evolu.dev/docs/api-reference/common/Type/variables/UrlSafeString) (letters, digits, `-`,
`_`) and must be between 1 and 41 characters.