Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
gulp-svgfallback
Advanced tools
Generate png sprite from svg sources.
default: 400
.Automatic options:
If your workflow is different, please use gulp-rename
to rename sources or result files.
The following task will output icons.png and icons.css:
var svgfallback = require('gulp-svgfallback');
var gulp = require('gulp');
gulp.task('svgfallback', function () {
return gulp
.src('src/icons/*.svg', {base: 'src/icons'})
.pipe(svgfallback())
.pipe(gulp.dest('dest'));
});
Please ensure that svg sources have width and height: these dimensions will be used to generate png sprite.
An additional option cssTemplate
allows you to override template that is used to generate css.
For more info, please check the default template in 'templates/style.css'.
Here is an example of data that is passed to css template:
{
"backgroundUrl": "sprite.png",
"icons": [
{
"name": "circle",
"width": 40,
"height": 40,
"left": 0,
"top": 0
},
{
"name": "square",
"width": 40,
"height": 40,
"left": 40,
"top": 0
}
]
}
If you need to add prefix to each css class, please use gulp-rename
:
var gulp = require('gulp');
var rename = require('gulp-rename');
var svgfallback = require('gulp-svgfallback');
gulp.task('default', function () {
return gulp
.src('src/icons/*.svg', {base: 'src/icons'})
.pipe(rename({prefix: 'icon-'})
.pipe(svgfallback())
.pipe(gulp.dest('dest'));
});
Since css class for each icon should be unique, you cannot pass files with the same name.
If you need to have nested directories that may have files with the same name, please
use gulp-rename
. The following example will concatenate relative path with the name of the file,
e.g. src/icons/one/two/three/circle.svg
becomes one-two-three-circle
.
var gulp = require('gulp');
var rename = require('gulp-rename');
var svgfallback = require('gulp-svgfallback');
gulp.task('default', function () {
return gulp
.src('src/icons/**/*.svg', {base: 'src/icons'})
.pipe(rename(function (path) {
var name = path.dirname.split(path.sep);
name.push(path.basename);
path.basename = name.join('-');
}))
.pipe(svgfallback())
.pipe(gulp.dest('dest'));
});
To add variations (e.g. different colors) into your sprite, you can combine gulp-svgfallback with other gulp plugins.
The following task will add .circle-red
and .circle-blue
into your sprite.
var path = require('path');
var gulp = require('gulp');
var gulpif = require('gulp-if');
var lazypipe = require('lazypipe');
var clone = require('gulp-clone');
var cheerio = require('gulp-cheerio');
var rename = require('gulp-rename');
var svgfallback = require('gulp-svgfallback');
function isCircle (file) {
return path.basename(file.relative) === 'circle.svg';
}
function colorize (color) {
var sink;
return (lazypipe()
.pipe(function () {
sink = clone.sink();
return sink;
})
.pipe(cheerio, function ($) {
$('svg').attr('fill', color);
})
.pipe(rename, {suffix: '-' + color})
.pipe(function () {
return sink.tap();
})
)();
}
gulp.task('svgfallback', function () {
return gulp
.src('src/icons/*.svg', {base: 'src/icons'})
.pipe(gulpif(isCircle, colorize('red')))
.pipe(gulpif(isCircle, colorize('blue')))
.pipe(svgfallback())
.pipe(gulp.dest('dest'));
});
FAQs
Generate png sprite from svg icons
The npm package gulp-svgfallback receives a total of 64 weekly downloads. As such, gulp-svgfallback popularity was classified as not popular.
We found that gulp-svgfallback 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.