
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
cloud-functions-config
Advanced tools
Get per-project config for your cloud functions from a json file on GCS
Configure your cloud functions with a per-project (per-env) secret JSON file hosted on GCS
In the GCP docs it is implied that you should set up one project per environment:
We recommend that you spend some time planning your project IDs for manageability. A typical project ID naming convention might use the following pattern:
[company tag]-[group tag]-[system name]-[environment (dev, test, uat, stage, prod)]
cloud-functions-config
uses process.env.GCP_PROJECT
to find out which bucket to fetch the config from.config.json
file has been fetched the JSON key-values are added to process.env
under keys prefixed with cfc__
).[project-ID]-config-private
that your cloud functions has permission to read from (this should be enabled by default)config.json
stored within the above bucketnpm i cloud-functions-config
const { initConfig, getConfig } = require('cloud-functions-config')
// initConfig will only requests config from GCS if none has been set yet
initConfig()
.then(config => {
// app logic
console.log(config)
// { token: 'xxxxxx', ... }
})
FAQs
Get per-project config for your cloud functions from a json file on GCS
The npm package cloud-functions-config receives a total of 0 weekly downloads. As such, cloud-functions-config popularity was classified as not popular.
We found that cloud-functions-config 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.