
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
firebase-thermite-ng
Advanced tools
firebase-thermite-ng
contains the Angular modules for firebase-thermite
- a library of RxJS observables for Firebase.
You might need it if the official Angular library for Firebase - AngularFire2 - does not suit your requirements.
The differencees between firebase-thermite
and AngularFire2 are listed here.
In addition to those, firebase-thermite-ng
differs from AngularFire2 in that it ensures subscribers execute within the Angular zone. With AngularFire2, subscribers execute within the zone in which the observable was created.
import {
ThermiteAuthModule,
ThermiteDatabaseModule,
ThermiteModule
} from "firebase-thermite-ng";
@NgModule({
bootstrap: [
AppComponent
],
imports: [
...
ThermiteModule.initializeApp({
apiKey: "...",
authDomain: "...",
databaseURL: "...",
messagingSenderId: "...",
storageBucket: "..."
}),
ThermiteAuthModule,
ThermiteDatabaseModule
]
})
class AppModule {}
With the modules imported, ThermiteAuth
and ThermiteDatabase
are then available for injection into components, etc.
ThermiteAuth
implements firebase.auth.Auth
and ThermiteDatabase
implements firebase.database.Database
and both include additional methods that create observables. See auth/auth.ts
and database/database.ts
in firebase-thermite
.
FAQs
Firebase RxJS observables for Angular
We found that firebase-thermite-ng demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.