On Github jeffhem / svg-spriting
Create a gulp task for creating the sprite sheet from the individual SVG
gulp.task('sprite', function(){
return gulp.src(config.imgSrcDir + '/*.svg')
.pipe(svgSprite(svgConfig))
.pipe(gulp.dest(config.imgDestDir));
});
Use #fragment-identifier to locate the svg on the sprite
<img src="/sprite/sprite.svg#service-calculator">
<object data="/sprite/sprite.svg#header-image"></object>
Style the element to fit your need.
Repo: Bluemix Pricing Branch: gulpify