JKJarrod Kaneinblog.jarrodkane.com·May 8, 2022 · 4 min readSveltekit RoutesEveryone loves a good route, in Svelte kit we have a file structure routing system. The docs cover routing in-depth here Routing. There are two types of routes, Pages, and Endpoints. Pages Display HTML to the user Rendered on client and server (Can ...00
JKJarrod Kaneinblog.jarrodkane.com·Apr 24, 2022 · 2 min readSvelte and Svelte kitLet's get this Svelte party started. We've already gone through what Svelte is, but now we're going to talk about SvelteKit. What is SvelteKit? SvelteKit is a framework built on top of Svelte that allows you to quickly start up a Svelte application. ...00
JKJarrod Kaneinblog.jarrodkane.com·Apr 18, 2022 · 2 min readWhat is Svelte?What is Svelte? Svelte is a tool that allows you to build web applications It allows you to create reactive applications It's very much like vanilla JavaScript What makes Svelte different to React? Does not have a virtual DOM Does not introduc...00
JKJarrod Kaneinblog.jarrodkane.com·Dec 31, 2021 · 3 min readWhat is TypeScript?Let's start by smashing some Jargon! What is a Type? A type is a label that describes the different properties and methods that a value has TypeScript Types What's a Superset? A programming language that contains all the features of a given lang...01S