Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
DEPRECATED This package has been moved to karma-gzip-preprocessor
A Karma preprocessor and server handler for serving gzipped test assets.
Particularly handy when working with large test bundles and remote browser-cloud services like Browserstack or Saucelabs.
The easiest way is to keep karma-coverage as a devDependency in your package.json.
npm install karma-gzip --save-dev
// karma.conf.js
module.exports = function(config) {
config.set({
// We need to add some extra server middleware so that we can correctly
// serve gzipped files
plugins: [ 'karma-gzip' ],
frameworks: [ 'gzip' ],
files: [
'src/**/*.js',
'test/**/*.js'
],
preprocessors: {
// Only files marked for gzip preprocessing will be compressed.
'test/large_test_bundle.js': [ 'gzip' ],
'test/test_helper.coffee': [ 'coffee', 'gzip' ]
}
});
};
You can tell that your assets are being gzipped when you see output something like the following:
$ karma start --log-level=debug
INFO [preprocessor.gzip]: compressed /MyProject/test/test_helper.js [2MB -> 437KB]
INFO [preprocessor.gzip]: compressed /MyProject/test/test_index.js [5MB -> 1MB]
DEBUG [gzip-plugin]: serving (gzip): /MyProject/test/test_helper.js
DEBUG [gzip-plugin]: serving (gzip): /MyProject/test/test_index.js
FAQs
[DEPRECATED] A gzip preprocessor for Karma
The npm package karma-gzip receives a total of 11 weekly downloads. As such, karma-gzip popularity was classified as not popular.
We found that karma-gzip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.