Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codediodeio/sveltefire

Cybernetically enhanced Firebase apps
https://github.com/codediodeio/sveltefire

Last synced: about 18 hours ago
JSON representation

Cybernetically enhanced Firebase apps

Awesome Lists containing this project

README

        



SvelteFire


npm
Discord
License
Cybernetically Enhanced Firebase Apps



A minimal, yet powerful library that puts realtime Firebase data into Svelte stores.

- [Quick Start](https://sveltefire.fireship.io/guide/start)
- [Documentation](https://sveltefire.fireship.io)

## Build Complex Apps Faster

SvelteFire allows you to access Firebase Auth, Firestore, Storage, RealtimeDB, and Analytics with minimal complexity. It simplfies relational data with a declarative syntax, handles loading states, automatically disposes of realtime data subscriptions, and more!

Gaze in awe at the example below where we fetch multiple levels of realtime user data with just a few lines of Svelte code:

```svelte


Howdy, {user.uid}


{post.title}



{#each comments as comment}

{/each}
...
```

Each component in this example above is underpinned by a Svelte store. These custom stores can be used for fine-grained control and to implement your own custom patterns.

Use stores to access Firebase data with Svelte's reactive `$` syntax:

```svelte

import { docStore } from 'sveltefire';
import { firestore } from '$lib/firebase'; // your firestore instance

const post = docStore(firestore, 'posts/id');

{$post?.title}
```