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-functions-instance
Advanced tools
Methods and Helpers for Firebase cloud functions, Firestore, RTDB, and more
Use Babel to target the correct execution environment for Cloud Functions for Firebase and use modern languages features (ES6+) to develop.
Here is the accompanying Medium post.
I suggest developing your Cloud Functions in the src/functions/
directory and output everything to a dist/functions/
folder. By using a single root package.json
we remove the need for maintaining and possibly merging two or more for the Functions themselves and other code, like a frontend app.
Use @babel/core
, @babel/cli
and @babel/preset-env
with some npm scripts to compile to the Cloud Functions server runtime of NodeJS v6.11.5. The output directory, dist/functions/
is created on compilation in the deploy step (yarn deploy).
Firebase predeploy scripts are used in the firebase.json
to coordinate which npm scripts get called before deploying to ensure everything is built.
# Clone this dir
curl https://codeload.github.com/jthegedus/blog-code/tar.gz/master | tar -xz --strip=1 blog-code-master/firebase-functions-es6-babel
cd firebase-functions-es6-babel
# Install
yarn
If you're using firebase-tools
globally, then skip to the Deploy to Firebase step.
yarn fblogin
yarn serve
Update .firebaserc
to use your Firebase project id.
yarn deploy
FAQs
Methods and Helpers for Firebase cloud functions, Firestore, RTDB, and more
We found that firebase-functions-instance demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.