Skip to content

tastycrayon/sveltekit-pocketbase-auth

Repository files navigation

Sveltekit Pocketbase authentication

Implementation of with Sveltekit and Pocketbase authentication with email and Google OAuth.

2023-05-20_20-03

Popup Signup Sign In Homepage
Screen Shot 2023-05-20 at 21 05 30 Screen Shot 2023-05-20 at 21 04 14 Screen Shot 2023-05-20 at 21 02 24 Screenshot 2023-05-20 at 20-01-52 Screenshot

Sveltekit Installation

Install packages and run.

npm install
npm run dev

Update .env if you are not using the default pocketbase url. PUBLIC_POCKETBASE_URL='http://127.0.0.1:8090'.

Pocketbase Installation & Setup

./pocketbase serve

Google OAuth setup

Get client id and client secret from Google console. Create an OAuth project.

Set uri and Redirect uri.

http://localhost:5173
http://127.0.0.1:8090/api/oauth2-redirect

2023-05-20_21-16

Copy Client ID and Client Secret.

2023-05-20_22-11

Set the providers in pocketbase.

2023-05-20_22-20

Usage

Server side

// +page.server.ts

import type { ITodo } from '$lib/types';
import type { PageServerLoad } from './$types';

export const load = (async ({ locals }) => {
	try {
		const todos = await locals.pb.collection('todos').getList<ITodo>(1, 10);
		// structured clone required cause the data is not serializable by default.
		return { todos: structuredClone(todos) };
	} catch (err) {}
}) satisfies PageServerLoad;

Client side

// +page.svelte

<script lang="ts">
	import { pb } from '$lib/pocketbase';
	import type { ITodo } from '$lib/types';
	async function clientSideFn() {
		console.log(await pb.collection('todos').getList<ITodo>());
	}
</script>

<button on:click={clientSideFn}>Click Me</button>

How it works

src/hooks.server.ts sits bewteen clients and Sveltekit server. It takes cookie from user, and creates an pb instance in Sveltekit.

src/hooks.client.ts does the same and allows usage on client-side/browser.

const pb = new PocketBase(); // new instance
pb.authStore.loadFromCookie(); // loads cookie from user
event.locals.pb = pb; // now sveltekit server can access it

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

This project implements authentication with Sveltekit and Pocketbase with email and Google OAth.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published