# [Svelte](https://svelte.dev/docs) ```sh npx degit sveltejs/template # set project to use typescript node scripts/setupTypeScript.js # or using vite npm init vite@latest ``` ## App Entry-point ```js import App from "./App.svelte"; // import the component const app = new App({ target: document.body, props: { // props passed to the App component }, }); export default app; ``` ## Components (`.svelte`) ### Basic Structure ```html
{variable}
``` ### If-Else ```js {#if } // markup here {:else if } // markup here {:else} // markup here {/if} ``` ### Loops ```js {#each array as item, index} // index is optional // markup here {/each} {#each array as item (key)} // use key to determine changes // markup here {/each} ``` ### Await Blocks ```js {#await promise}

...waiting

{:then number}

The number is {number}

{:catch error}

{error.message}

{/await} ``` ### Event Handling The full list of modifiers: - `preventDefault` — calls `event.preventDefault()` before running the handler. Useful for client-side form handling, for example. - `stopPropagation` — calls `event.stopPropagation()`, preventing the event reaching the next element - `passive` — improves scrolling performance on touch/wheel events (Svelte will add it automatically where it's safe to do so) - `nonpassive` — explicitly set `passive: false` - `capture` — fires the handler during the capture phase instead of the bubbling phase - `once` — remove the handler after the first time it runs - `self` — only trigger handler if `event.target` is the element itself ```js