
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Setty is a small node configuration util, which help better manage key/value settings across different environments. Depends on nconf.
Installing the module
npm install setty --save-dev
var setty = require('setty');
var path = require('path');
setty.load({
profileEnv: 'SETTY_PROFILE',
profile: '.config', // Default value
configFileName: 'config.json', // Default value
settingsDir: path.join(__dirname, 'settings')
});
//Reading settings
var connection = setty.get('connection');
//Reading nested settings
var connection = setty.get('facebook:token');
Profile can be specified in config file (.config by default) or via environment variable SETTY_PROFILE (name can be changed).
Example settings folder structure:
settings
andrew
config.json
production
config.json
tests
client
config.json
server
config.json
config.json
.config
.config-test
npm test
FAQs
Configs management application
We found that setty 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.