
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
karma-env-preprocessor
Advanced tools
A Karma plugin to read environment variables and make them available inside your tests.
Preprocessor which makes environment variables available to your tests.
The easiest way is to keep karma-env-preprocessor
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.10",
"karma-env-preprocessor": "~0.1"
}
}
You can simple do it by:
npm install karma-env-preprocessor --save-dev
Any files you preprocess using this plugin will be affected, e.g for all JavaScript files:
// karma.conf.js
module.exports = function(config) {
config.set({
preprocessors: {
'**/*.js': ['env']
},
envPreprocessor: [
'PATH',
'HOME'
]
});
};
This preprocessor uses process.env
to read the value of each environment variable specified in envPreprocessor
and publishes them in the global window.__env__
, so you can read these values in your tests.
For example, the above configuration will be served as:
window.__env__ = window.__env__ || []
window.__env__['PATH'] = '/usr/sbin:/usr/bin:/sbin:/bin';
window.__env__['HOME'] = '/home/jsok';
For more information on Karma see the homepage.
FAQs
A Karma plugin to read environment variables and make them available inside your tests.
The npm package karma-env-preprocessor receives a total of 6,335 weekly downloads. As such, karma-env-preprocessor popularity was classified as popular.
We found that karma-env-preprocessor 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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.