[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
type AppName = string &
  import("../Brand.ts").Brand<"UrlSafeString"> &
  import("../Brand.ts").Brand<"AppName">;
```

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.