Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
convict-dotenv
Advanced tools
Small Node.js library for settings/configuration. It uses dotenv with convict to provide a simple interface for getting config from the environment, including .env
files.
See convict for building your schema and create a .env
file in your project root (or elsewhere if you want to be explicit about it using an env var: DOTENV_CONFIG_PATH
).
Example:
const {getConfig} = require('convict-dotenv');
const schema = {
foo: {
env: 'FOO_EVAR',
format: String,
default: 'foodefault',
},
};
console.log(getConfig(schema).foo);
NODE_ENV
is set to test
, the default .env
location ${process.cwd()}/.env
) will not be loaded (you have to explicitly set DOTENV_CONFIG_PATH
if you want to load env vars from a file in tests: DOTENV_CONFIG_PATH=/somewhere/test.env node index.js
).process.env
shouldn't be changed by a library, which means not using dotenv package in it's standard setup: require('dotenv').config()
.Uses tap.
Run npm test
.
FAQs
Use convict with dotenv to build config
The npm package convict-dotenv receives a total of 54 weekly downloads. As such, convict-dotenv popularity was classified as not popular.
We found that convict-dotenv 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.