Solid-Start w/ Firebase
Hey all,
Looking for any sort of documentation or wrapper for firebase with solid-start. Mainly using the auth and firestore sdks. Theres seems to be a lot for normal solidjs but not solid-start
4 Replies
I think it's tricky, part of it is because usage of 3P code in SolidStart is implied to be isomorphic. You can always explicitly run server-only code through some variables (
isServer
or import.meta.env.SSR
) but I think in the case of Firebase, it can work on both browser/server, but I think the challenge here would be, I would assume, that you also wanted to run the admin SDK?I'm looking at running auth, firestore and admin sdks
GitHub
GitHub - wobsoriano/solid-firebase: Solid primitives for Firebase v9.
Solid primitives for Firebase v9. Contribute to wobsoriano/solid-firebase development by creating an account on GitHub.
Even with this repo and in solidjs I get errors, even when cloned from repo