sveltefire
sveltefire copied to clipboard
Cybernetically enhanced Firebase apps
After cloning this repo, making the adjustments that the readme states, I receive the above error when npm/npx sveltefire firebase. Received Log: `0 verbose cli C:\Program Files\nodejs\node.exe C:\Users\****\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js 1 info...
We're currently developing a SvelteKit project using Firebase and we wanted to use Sveltefire as well because it's great for what we need. The problem comes when we want to...
This PR adds support for Firebase RemoteConfig through multiple components: - `RemoteConfig`: This component instantiates a firebase RemoteConfig instance from the FirebaseApp. The big challenge with RemoteConfig is the SDK...
When using Collection , We dont trigger the loading state , as the initial value in never undefined. - Added the initial value as undefined in collection store. https://github.com/codediodeio/sveltefire/issues/96 https://github.com/codediodeio/sveltefire/issues/140...
```svelte /** * @type {string} */ export let entry; import { doc, setDoc } from 'firebase/firestore'; import { SignedIn, SignedOut, Doc } from 'sveltefire'; import { firestore } from '$lib/firebase';...
This means that you won't get a flash of the signed out component if you are actually signed in.
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.22.8 to 7.23.2. Release notes Sourced from @babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...
I am using collectionStore to get realtime data from a Firebase DB. However, the issue is that the store always has some value even when fetching data. So I am...
Bumps [undici](https://github.com/nodejs/undici) from 5.22.1 to 5.26.3. Release notes Sourced from undici's releases. v5.26.3 No release notes provided. v5.26.2 Security Release, CVE-2023-45143. v5.26.1 What's Changed Fix publish undici-types once and for...
This PR adds `prettier` and `prettier-plugin-svelte` for formatting, along with a `format` package.json script, and applies the formatting to the entire codebase. With this PR, the codebase can maintain consistent...