Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

firebase-firestore-fields

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firebase-firestore-fields

Convert Firebase Cloud Firestore API fields into a usable JavaScript format.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source


Firebase Firestore Fields

NPM downloads NPM version License Chat Follow on Twitter

Converts Cloud Firestore REST field values into a usable format. Handles nested objects and arrays.

Usage

npm install --save firebase-firestore-fields
const convert = require('firebase-firestore-fields');

// typical response from a Cloud Firestore REST endpoint
const response = {
  name: 'projects/testproject/databases/(default)/documents/config/2L3sczWg8vZhIZDVgLh5',
  fields: {
    title: {
      stringValue: 'Super cool app!',
    },
    theme: {
      mapValue: {
        fields: {
          backgroundColor: {
            stringValue: '#000000',
          },
        },
      },
    },
    appEnabled: {
      booleanValue: true,
    },
  },
  createTime: '2017-11-24T10:00:12.419673Z',
  updateTime: '2017-11-24T10:58:15.600296Z',
};

// convert the response fields into a usable format
const converted = convert(response.fields);

console.dir(converted);
// OUTPUT:
// {
//   title: "Super cool app!",
//   theme: {
//     backgroundColor: "#000000"
//   },
//   appEnabled: true,
// }

Differences

integerValue

Returns a type Number (Cloud Firestore returns it as a string).

geoPointValue

Returns the latitude & longitude points as an array pair: [latitude, longitude].

License

  • See LICENSE

Built and maintained with 💛 by Invertase.

Keywords

FAQs

Package last updated on 22 Jan 2019

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