npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

remove-svg-properties

v0.3.4

Published

Remove attributes and styles from SVGs

Downloads

889

Readme

remove-svg-properties

npm version

Remove attributes and styles from SVGs

Install

Install with npm

npm install remove-svg-properties --save

Usage

var rsp = require(‘remove-svg-properties’);
rsp.remove(options);

Options

Values below are defaults

  • src: Glob string with path to source SVGs
  • out: Output directory for colorless SVGs
  • stylesheets: true Set to false if you don't want to remove the <style> tags
  • attributes: true Set to false if you don't want to remove attributes
  • inline: true Set to false if you don't want to remove inline style properties
  • properties: [] Array of properties to be removed. See Properties section below for more information.
  • namespaces: [] Array of namespace names to be removed.
  • stylesToInline: false When set to true, <style> contents will be added as inline styles, which avoids stylesheet collisions when adding multiple inline SVGs to an HTML document.
  • log: true When set to false, console logging is disabled.

Properties

Using the properties option you can specify a list of attributes and CSS-properties which will be removed. Also, the plugin defines a few common, ready-to-use property-sets:

  • PROPS_FILL
    • fill
    • fill-opacity
    • fill-rule
  • PROPS_STROKE
    • stroke
    • stroke-dasharray
    • stroke-dashoffset
    • stroke-linecap
    • stroke-linejoin
    • stroke-miterlimit
    • stroke-opacity
    • stroke-width
  • PROPS_FONT
    • font-family
    • font-size
    • font-size-adjust
    • font-stretch
    • font-style
    • font-variant
    • font-weight

So, an example configuration could be: [rsp.PROPS_FILL, 'class'] This would remove all the properties listed in PROPS_FILL above and all the class attributes.

Namespaces

SVG elements can have namespaced attributes, usually added by SVG editing software like Adobe Illustrator.

If you configure the namespaces property to be something like ['i', 'sketch'], the plugin would remove every i:something and sketch:something property.

A <path sketch:type="MSShape"></path> would be converted to <path></path> only.

Usage Example

Usage with an example configuration object:

rsp.remove({
    src: './src/*.svg',
    out: './dest',
    stylesheets: false,
    properties: [rsp.PROPS_STROKE, rsp.PROPS_FILL, 'color'],
    namespaces: ['i', 'sketch', 'inkscape']
});

This would take all the SVG files from ./src and put them into ./dest while removing all the stroke and fill related properties as well as the color property. Those properties are only removed from attributes and inline styles, not from <style> blocks.

Usage with Grunt

This module can also be used in automated tasks using Grunt.

module.exports = function(grunt) {

    grunt.initConfig({
        'remove-svg-properties': {
            options: {
                stylesheets: false,
                properties: [rsp.PROPS_STROKE, rsp.PROPS_FILL, 'color'],
                namespaces: ['i', 'sketch', 'inkscape']
            },
            all: {
                src: './src/*.svg',
                dest: './dest'
            }
        }
    });

    grunt.loadNpmTasks('remove-svg-properties');

    grunt.registerTask('default', ['remove-svg-properties']);
}

Options to use remove-svg-properties with Grunt are the same as for the rsp.remove function with the exception of src and out, which are not part of the options object. Also, out is called dest in Grunt.

Usage with Gulp

This module can also be used in automated tasks using Gulp. Make sure to require the stream object of the plugin as in the example below:

var gulp = require('gulp');
var rsp = require('remove-svg-properties').stream;

gulp.task('remove-svg-properties', function () {
    gulp.src('./src/*.svg')
    .pipe(rsp.remove({
        properties: [rsp.PROPS_FILL]
    }))
    .pipe(gulp.dest('./dest'));
});

gulp.task('default', 'remove-svg-properties');

Options to use remove-svg-properties with Gulp are the same as for the rsp.remove function with src and out being ignored. They are handled by gulp.src and gulp.dest using streams.