
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
docker-config-loader
Advanced tools
A really simple utility which loads the config from docker secrets if a specified env var is passed, if not it loads the config from a local path
A extremely basic module to load a different config based on the environment.
Base Usage:
var loader = require('docker-config-loader');
var config;
try {
config = loader({secretName:'prod_config.json',localPath:'./local_config.json'})
} catch(e) {
//An Error occured, maybe the config was not found or could not be required.
}
If a environment var with the name set in secretName
exists, the loader prefers it over the local path and tries to load it from /run/secrets/secretName
##Local Loading
The Path is relative to node_modules.
For Example:
if you got a project structure as follows:
- node_modules
- config.json
- src
- index.js
The loader will use the root path of the project,
so if you want to require the config.json
you would have to set the following options:
loader({secretName:'prod_config.json',localPath:'./config.json'})
I hope this module is a nice utility for very basic needs like mine.
FAQs
A really simple utility which loads the config from docker secrets if a specified env var is passed, if not it loads the config from a local path
The npm package docker-config-loader receives a total of 12 weekly downloads. As such, docker-config-loader popularity was classified as not popular.
We found that docker-config-loader 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.