
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
gulp-svgicons2svgfont
Advanced tools
Create an SVG font from several SVG icons with Gulp.
You can test this library with the frontend generator.
First, install gulp-svgicons2svgfont
as a development dependency:
npm install --save-dev gulp-svgicons2svgfont
Then, add it to your gulpfile.js
:
var svgicons2svgfont = require('gulp-svgicons2svgfont');
gulp.task('Iconfont', function(){
gulp.src(['assets/icons/*.svg'])
.pipe(svgicons2svgfont({
fontName: 'myfont'
}))
.on('codepoints', function(codepoints) {
console.log(codepoints);
// Here generate CSS/SCSS for your codepoints ...
})
.pipe(gulp.dest('www/font/'));
});
Every icon must be prefixed with it's codepoint. The appendCodepoints
option
allows to do it automatically. Then, in your own CSS, you just have to use
the corresponding codepoint to display your icon. See this
sample less mixin
for a real world usage.
The plugin stream emits a codepoints
event letting you do whatever you want
with them.
Please report icons to font issues to the svgicons2svgfont repository on wich this plugin depends.
Type: Boolean
Default value: false
Set to true to also convert read icons that doesn't have the .svg extension.
A string value that is used to name your font-family (required).
Type: Boolean
Default value: false
Allow to append codepoints to icon files in order to always keep the same codepoints.
Type: integer
Default value: 0xE001
Starting codepoint used for the generated glyphs. Defaults to the start of the Unicode private use area.
The svgfont2svgicons options are also available:
Feel free to push your code if you agree with publishing under the MIT license.
FAQs
Create a SVG font from several SVG icons
The npm package gulp-svgicons2svgfont receives a total of 18,484 weekly downloads. As such, gulp-svgicons2svgfont popularity was classified as popular.
We found that gulp-svgicons2svgfont demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.