Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
components-font-awesome
Advanced tools
Shim repository for Font Awesome.
The full suite of pictographic icons, examples, and documentation can be found at: http://fortawesome.github.com/Font-Awesome/
components-font-awesome
components-font-awesome
components/font-awesome
components/font-awesome
If using bower, do not forget to re-compile bower using gulp bower
. Here is the sample code if you do not have one.
// Update Foundation with Bower and save to /vendor
gulp.task('bower', function() {
return bower({ cmd: 'update'})
.pipe(gulp.dest('vendor/'))
});
With gulp, usually there is a function to combine all scss to css file for faster page loads.
In the sample case we run function gulp style
to combine all scss to css file under ./assets/css/
Here is the important part, the default font folder is on different path with the compiled bower file. We need to move the font from default font folder to the compiled bower folder (In the example vendor
is the compiled folder).
// Move font-awesome fonts folder to css compiled folder
gulp.task('icons', function() {
return gulp.src('./vendor/components-font-awesome/webfonts/**.*')
.pipe(gulp.dest('./assets/fonts'));
});
FAQs
Font Awesome, the iconic SVG, font, and CSS framework.
The npm package components-font-awesome receives a total of 7,503 weekly downloads. As such, components-font-awesome popularity was classified as popular.
We found that components-font-awesome 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.