Gathering detailed insights and metrics for parse-server-firebase-auth
Gathering detailed insights and metrics for parse-server-firebase-auth
Gathering detailed insights and metrics for parse-server-firebase-auth
Gathering detailed insights and metrics for parse-server-firebase-auth
npm install parse-server-firebase-auth
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (86.8%)
JavaScript (13.2%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1 Stars
31 Commits
1 Forks
1 Watchers
2 Branches
1 Contributors
Updated on Mar 23, 2024
Latest Version
2.0.0
Package Id
parse-server-firebase-auth@2.0.0
Unpacked Size
9.54 kB
Size
3.40 kB
File Count
15
NPM Version
9.5.0
Node Version
18.15.0
Published on
Mar 23, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
This is just a fork of the original Parse Server Firebase package with only the auth portion included. It was forked so that those who do not need the storage adapter will not be required to install the somewhat large sharp package
Install the module by npm
$ npm i -S parse-server-firebase-auth
or using yarn
$ yarn add parse-server-firebase-auth
Based on: https://github.com/parse-server-modules/parse-server-firebase-auth-adapter
1FIREBASE_SERVICE_ACCOUNT="$(< firebaseAccountKey.json)"
FIREBASE_SERVICE_ACCOUNT
can be specified as the string content of the credentials JSON file or can be specified as a path to the JSON file by using:
1FIREBASE_SERVICE_ACCOUNT="/relative/to/project/firebaseAccountKey.json"
1import { ParseServer } from 'parse-server' 2import { FirebaseAuthAdapter } from 'parse-server-firebase-auth' 3... 4const parserServer = new ParseServer({ 5 appId: "APP_ID", 6 appName: "APP NAME", 7 ... 8 auth: { 9 firebase: new FirebaseAuthAdapter() 10 } 11})
1curl -X POST \ 2 {{host}}/parse/users \ 3 -H 'content-type: application/json' \ 4 -H 'x-parse-application-id: {{ParseAppId}}' \ 5 -d '{ 6 "authData": { 7 "firebase": { 8 "access_token": "{{firebase_access_token}}", 9 "id": "{{firebase_user_uid}}" 10 } 11 } 12}'
Based on previous adapters provided by the parse community this repository provides firebase adapters and extensions rewritten in TypesScript and newer features in JavaScript for Parse Server.
This package solves few issues. When setup firebase admin NodeJS SDK a credentials file is required. The previous adapters requires the credentials file to be specified by path. In some scenarios this is not aplicable because track the credentials file into the version control system is not good. This package will combine and contains everything needed for all of the service integration supported with Parse Server. In addition provided by this package storage adapter adds support for streaming of files.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
8 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More