What is SvelteKit?
SvelteKit is an all-in-one solution to develop web applications using Svelte components. If you’re familiar with React, then you’ve likely heard of Create React App. While both Svelte and React are useful to create reusable components built with JS, each is more useful when given a means of utilizing those components.
Out of the box, SvelteKit provides mechanisms to handle routing; server-side rendering (SSR) supports TypeScript and enriches the development experience with features such as Hot Module Replacement (HMR), which automatically refreshes the browser when changes are detected in an application. This feature, and many others, are made possible by the tight coupling of SvelteKit with Vite.