New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

parse-server-firebase

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-server-firebase

Firebase adapters, extensions and utilities for Parse Server

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Parse Server Firebase

npm Snyk Vulnerabilities for npm package NPM

Getting started

Install the module by npm

$ npm i -S parse-server-firebase

or using yarn

$ yarn add parse-server-firebase

Firebase Storage Adapter

Based on: https://github.com/parse-community/parse-server-gcs-adapter

FIREBASE_SERVICE_ACCOUNT="$(< firebaseAccountKey.json)"
FIREBASE_STORAGE_BUCKET="PROJECT_ID.appspot.com",
FIREBASE_STORAGE_CACHE_CONTROL="public, max-age=3600"
FIREBASE_STORAGE_DIRECT_ACCESS=false

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.

FIREBASE_SERVICE_ACCOUNT="/relative/to/project/firebaseAccountKey.json"

Add adapter to your Parse Server

import { ParseServer } from 'parse-server'
import { FirebaseStorageAdapter } from 'parse-server-firebase'
...
const parserServer = new ParseServer({
  appId: "APP_ID",
  appName: "APP NAME",
  ...
  filesAdapter: new FirebaseStorageAdapter(),
})

Fireabse Auth Adapter

Based on: https://github.com/parse-server-modules/parse-server-firebase-auth-adapter

FIREBASE_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:

FIREBASE_SERVICE_ACCOUNT="/relative/to/project/firebaseAccountKey.json"

Add adapter to your Parse Server

import { ParseServer } from 'parse-server'
import { FirebaseAuthAdapter } from 'parse-server-firebase'
...
const parserServer = new ParseServer({
  appId: "APP_ID",
  appName: "APP NAME",
  ...
  auth: {
    firebase: new FirebaseAuthAdapter()
  }
})
Extensions

Generate thumbnails

Ouf of the box you can generate thumbnails for images by specifying FIREBASE_THUMBNAILS_SIZES with an array of the desired target sizes. Each image will be generated, preserving the aspect ratio of the image and ensuring the image covers both provided dimensions by cropping/clipping to fit.

$ export FIREBASE_THUMBNAILS_SIZES="64x64,128x128,256x256"

If you want to resize to fit a specific width or height use the following syntax:

$ export FIREBASE_THUMBNAILS_SIZES="64,128x0,256x256"

The generated file names will have appended _thumb_{size} for example:

Original:

a217ca28b0bfac7db4e3f1272ebb8e12_test.jpg

and generated:

a217ca28b0bfac7db4e3f1272ebb8e12_test_thumb_0x512.jpg
a217ca28b0bfac7db4e3f1272ebb8e12_test_thumb_1280x720.jpg

Authenticate

curl -X POST \
  {{host}}/parse/users \
  -H 'content-type: application/json' \
  -H 'x-parse-application-id: {{ParseAppId}}' \
  -d '{
    "authData": {
    	"firebase": {
    		"access_token": "{{firebase_access_token}}",
    		"id": "{{firebase_user_uid}}"
    	}
    }
}'

Why so?

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. First, 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 practice. 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.

Keywords

FAQs

Package last updated on 01 Apr 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc