Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
main-bower-min-checked
Advanced tools
Get bower main files in both normal and in minimized formats (if available in package)
Made to be used with Gulp. Get bower main files as default (defined in 'main') or minified file names array. If no minified version is found for some files, they will be created.
It uses main-bower-files to list bower dependencies, gulp-rename and gulp-uglify to create missing minified files.
npm install --save-dev main-bower-min-checked
var bower_files = require('main-bower-min-checked');
var inject = require('gulp-inject');
var main_bower_files_options = {
includeDev: false,
paths: {
bowerDirectory: './lib',
bowerJson: 'bower.json'
}
};
var uglify_options = {
preserveComments: 'all'
};
gulp.src('./index.html')
.pipe(
inject(
gulp.src(
bower_files(main_bower_files_options).getDefault(),
{read: false}
)
)
)
.pipe(gulp.dest('./'));
gulp.src('./index.html')
.pipe(
inject(
gulp.src(
bower_files(main_bower_files_options).getMinified(uglify_options),
{read: false}
)
)
)
.pipe(gulp.dest('./'));
FAQs
Get bower main files in both normal and in minified formats
The npm package main-bower-min-checked receives a total of 2 weekly downloads. As such, main-bower-min-checked popularity was classified as not popular.
We found that main-bower-min-checked 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.