# 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 {$subscriber ? $subscriber[0].name : ''} ``` ### Realtime todo app using CollectionSubscriber ```svelte
{#each $subscriber as collectionDocument}

{collectionDocument.name}

{/each}
``` ## Routing ```svelte
About us
``` ## Social auth icons ```svelte ```