GithubHelp home page GithubHelp logo

jnaudin / sveltekit-pocketbase-auth Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tastycrayon/sveltekit-pocketbase-auth

0.0 0.0 0.0 71 KB

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

JavaScript 4.29% TypeScript 43.88% CSS 8.24% HTML 0.69% Svelte 42.90%

sveltekit-pocketbase-auth's Introduction

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

sveltekit-pocketbase-auth's People

Contributors

tastycrayon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.