Let's connect

Secure your NestJS API with Guards.

Secure your NestJS API with Guards.

Learn Javascript

src/lib/main.js
import { data } from '$app/stores';

console.log(data);

Learn Svelte

terminal
pnpm create svelte@latest helloworld
+page.svelte
<script type="ts">
	let count = 0;
</script>

<button on:click={() => count++}>Count is {count}</button>

Learn Typescript

main.ts
import type { PageLoad } from './$types';

export const load = (async () => {
	return {};
}) satisfies PageLoad;

Variables