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.
spritestream
Advanced tools
spritestream reads from a stream of retina and non-retina image files and spits out sprite sheets and an accompanying CSS file. It is designed for use with Gulp.
Pipe your source files into spritestream
, and provide a callback. The callback
will receive either an error or an array of results with the non-retina sprite
image, the retina sprite image, and the CSS file, in that order.
spritestream assumes that for each image.png
, there is an accompanying
image@2x.png
for use in the retina sprite sheet.
var es = require('event-stream');
var gulp = require('gulp');
var spritestream = require('spritestream');
gulp.src('./images/**/*.png').pipe(spritestream(function(err, results) {
if (err) { throw err; }
es.readArray(results).pipe(gulp.dest('./public'));
}));
cssClass
Use a custom CSS class. By default, classes will be named like .icon
and
.icon-image-name
. These can be changed to .sprite
and .sprite-image-name
,
for example, by passing sprite
.
digest
Set to true
to append an md5 hash of the file contents to the end of its name.
imagesPath
The path, relative to the ultimate pipe destination, to attach to the image Vinyl file objects.
cssPath
The path, relative to the ultimate pipe destination, to attach to the CSS Vinyl file objects.
template
Provide a template to use other than the default one. This will be compiled with
EJS. See the existing template in templates/sprites.css.ejs
for an example.
Can be a string or a Buffer.
This example will result in the following files:
./public/images/sprites-34509438543098abcde.png
./public/images/sprites-234098234098234908a@2x.png
./public/stylesheets/sprites-styles-2340823049823094098.css
gulp.src('./images/**/*.png').pipe(spritestream({
cssClass : 'sprite',
digest : true,
imagesPath: './images/sprites',
cssPath : './stylesheets/sprites-styles'
}, function(err, results) {
es.readArray(results).pipe(gulp.dest('./public'));
});
npm install spritestream --save
Automated tests:
npm test
Manual tests:
npm run test-server
The icons used in the test suite—"Watch", "Breakfast", "Sketchbook", and "Twinkie"—were designed by Edward Boatman from thenounproject.com.
FAQs
images go in, sprites come out
The npm package spritestream receives a total of 7 weekly downloads. As such, spritestream popularity was classified as not popular.
We found that spritestream 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’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.