Crates.io | firebase-js-rs |
lib.rs | firebase-js-rs |
version | 0.1.1 |
source | src |
created_at | 2023-02-26 15:49:28.429026 |
updated_at | 2023-02-27 13:32:49.261237 |
description | Unofficial Wasm bindings for Firebase JS SDKs |
homepage | |
repository | https://github.com/wa1aric/firebase-js-rs/ |
max_upload_size | |
id | 795242 |
size | 7,140 |
Unofficial Wasm bindings for Firebase JS SDKs written in Rust.
Following example shows how to add email and password sign in to Sycamore app.
Install firebase-js-rs by running the following Cargo command in your project directory:
cargo add firebase-js-rs
or alternatively add the following line to your Cargo.toml:
firebase-js-rs = "0.1.1"
Then add project in the Firebase console and install JS SDKs from the CDN.
<html>
<head>
<script src="https://www.gstatic.com/firebasejs/9.17.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.17.1/firebase-auth-compat.js"></script>
</head>
</html>
use sycamore::prelude::*;
use firebase_js_rs::{app::initialize_app, Config};
fn main() {
sycamore::render(|cx| {
view! { cx,
// Initialize Firebase
let firebase_app = initialize_app(Config::initialize(
"api_key", None, None, None, None, None, None,
));
// Get reference to the auth service
let auth = app.auth();
}
});
}
let result = auth.create_user_with_email_and_password(email, password).await;
let result = auth.sign_in_with_email_and_password(email, password).await;
let callback = Closure::new(move |user: JsValue| {
// Get info about user
});
auth.on_auth_state_changed(&callback);
callback.forget();