I am trying to understand how to communicate with Svelte components. In my app I have created two components. In one, Antescript.svelte, I communicate with App.
I have a sveltekit app I'm working on and it includes Prisma, I have been trying to pass a posts Array to all of my routes via the __layout's load function. Thi
I am working on my first svelte project and are trying to use google-api-wrapper with the only change being that i import: import Google from "google-api-wrappe
I want to use SvelteKit with an external backend. Let's consider the backend is not in NodeJS, already done and running and that every bit of non-static data co
Yesterday I updated SvelteKit version from v1.0.0-next.241 to v1.0.0-next.287, and since I cannot fetch data in the component. I get an error message: Unexpecte
Maybe someone tried this before and is able to give me a hint. I have used normal svelte setup (mentioned in the main page) which scaffolds the app; npx degit s
I want to add my Google Analytics Tracking ID- UA-XXXXXXXXX-X to my svelte app. I found two ways of doing it. First using Install the global site tag here <!
I have a writable store with following data let array= writable({ skills: [{ id: 1,
I am importing a third-party Svelte3 component with several children. For the sake of example, the third-party component looks like the following: <script>
I'm initialising a Class in the onMount function of a Parent Wrapper component and want to expose it to all the children. I'm currently using a writable store t
I am not getting how to change the default 5000 port in Svelte to some other port if we install the sample template through degit.
Let's say you are using a component that has been imported from elsewhere <Animal species={animalSpecies} /> // species has a specific type and you want t