# Svelte + Appwrite = 🚀 Blazing fast development with done backend and fully-prepared frontend. ## Appwrite installation [Appwrite installation](https://appwrite.io/docs/installation) ## Frontend included * tailwind * scss * css reset * typescript * routing * ready routes * oauth * folder structure * common components * simple icons * service worker * path aliases * database realtime subscribers * i18n * vite * prettier * editorconfig ## Database subscribers ```svelte {#if $loading}

Loading...

{:else} {#each [...$subscriber, ...$insertSubscriber] as item}

{item.name}

{/each} {/if}
``` ## Routing ```svelte
{#if !$isLoading} About us {/if}
``` ## Social auth icons ```svelte ``` ## i18n Locale file `src/locales/en.json` ```json { "page": { "home": { "title": "Homepage" } } } ``` ```svelte

{$_('page.home.title')}

Change language:

``` ## path aliases `$lib` = `src/lib` `$root` = `/` `$src` = `src`