Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
firebase-firestore-fields
Advanced tools
Convert Firebase Cloud Firestore API fields into a usable JavaScript format.
Converts Cloud Firestore REST field values into a usable format. Handles nested objects and arrays.
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,
// }
Returns a type Number
(Cloud Firestore returns it as a string
).
Returns the latitude & longitude points as an array pair: [latitude, longitude]
.
Built and maintained with 💛 by Invertase.
FAQs
Convert Firebase Cloud Firestore API fields into a usable JavaScript format.
We found that firebase-firestore-fields demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.