
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.
A set of tools to get env files and save
npm i goenv --save
const goenv = require('goenv');
const options =
{
global: true,
process: true,
dirname: __dirname,
defaultEnv:'dev',
envName: 'nodeRocks-1.0',
envPatterns:['dev','int','pre', 'pro'],
types:['json','js'],
excludeFiles:['package.json','index.js'],
excludeFolders:['node_modules']
};
const env = goenv.init(options);
OPTIONS FOR INIT METHOD - example:
Get the env context in other files after call goenv in index app.
const env = global[myEnvNameInstance];
const goenv = require('goenv');
const optionsExtend =
{
global: true,
process: true,
envName: 'nodeRocks-1.0'
};
const extended = goenv.extend({
propertyExtended: {
property: 'extended'
}
}, optionsExtend);
console.log('extended',global['nodeRocks-1.0']);
const deleteOptions = {
global: true,
process: true,
envName: 'nodeRocks-1.0',
key: 'credentials'
};
const deleted = goenv.deleteProps(deleteOptions);
OPTIONS FOR deleteProps METHOD - example:
let optionsWriteFile ={
filename: 'myEnvFile',
path: __dirname,
envName: 'nodeRocks-1.0',
global:true
};
goenv.writeEnvFile(optionsWriteFile, (err,done)=>
{
if(err)
{
console.log(err);
};
console.log(done);
});
OPTIONS FOR writeEnvFile METHOD - example:
FAQs
Library to load the environment configuration.
We found that goenv 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.