@vmutafov/firebase-auth-node-persistence
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

Firebase Auth NodeJS Persistence

npm version

What?

This library is a simple file-based Firebase Auth NodeJS persistence provider. The idea behind it is that at the time of writing, Firebase's client SDK does not have persistent authentication storage when running in NodeJS - it only has an in-memory one. This is quite different from its usage in the browser where the Local Storage, Session Storage, or IndexedDB could be used.

Why?

There are use cases where having persistent authentication may be necessary for NodeJS applications:

  • having a CLI application where you want users to log in via dedicated command and not to be prompted on every next command to log in, e.g. the Firebase CLI where you log in once and you are not required to log in on each command
  • transferring your authenticated user to another machine or another NodeJS process

How?

Using the library is rather simple, you only need to initialize the Firebase Auth explicitly setting the persistence:

import { getApp } from "firebase/app";
import { initializeAuth } from "firebase/auth";
import { createNodeFilePersistence } from "@vmutafov/firebase-auth-node-persistence";
import { resolve } from "node:path";
import { cwd } from "node:process";

const app = getApp();

const nodeFilePersistence = createNodeFilePersistence({
    filePath: resolve(cwd(), '.appwrapsrc')
});

const auth = initializeAuth(app, {
    persistence: [nodeFilePersistence]
});

Setting the filePath property of the configuration options for the createNodeFilePersistence function allows you to specify a file that would be used for storing the authentication data.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.1
    25
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.1
    25
  • 0.1.0
    0

Package Sidebar

Install

npm i @vmutafov/firebase-auth-node-persistence

Weekly Downloads

25

Version

0.1.1

License

ISC

Unpacked Size

7.59 kB

Total Files

5

Last publish

Collaborators

  • vmutafov