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

svg-stylus

v0.0.5

Published

This project aims to recreate the functionality of rework-svg but adapted to work with Stylus.

Downloads

1,287

Readme

#SVG Stylus

This project aims to recreate the functionality of rework-svg but adapted to work with Stylus.

##Installation

###Node installation

$ npm install -g svg-stylus

###Node installation (master from Github)

$ npm install -g https://github.com/walle89/svg-stylus/archive/master.tar.gz

##Usage

###Run the plugin from the command line

$ stylus -u svg-stylus

###Important notes Given the difference in syntax between CSS and Stylus, some adaptions to syntax have been made. Available characters which do not yield Stylus syntax errors are fairly few and thus syntax is more limited than in rework-svg.

url() has been replaced with svgurl() as url() will automatically be base64 encoded. The URL inside svgurl() MUST be surrounded by quotes or Stylus will yield a syntax error.

SVG parameters are given as:

svg([selector attribute value [, selector attribute value...]])

This means selector must be repeated to set multiple attributes.

###Selectors

  • tagname
  • tagname#id -> entered as tagname$id, as # yields Stylus syntax error.
  • tagname[attr="value"] -> Not supported. [] yields Stylus syntax error.
  • tagname#id[attr="value"] -> Not supported. # and [] yields Stylus syntax errors.

###Examples

####SVG file inlined (rework-svg)

background-image: url('./img/icon.svg') svg();

####SVG file inlined (svg-stylus)

background-image svgurl('./img/icon.svg') svg()

####All paths filled red (rework-svg)

background-image: url('./img/icon.svg') svg({
path { fill: #FF0000; }
});

####All paths filled red (svg-stylus)

background-image svgurl('./img/icon.svg') svg(path fill #FF0000)

####First path filled green, second filled red (rework-svg)

background-image: url('./img/icon.svg') svg({
	path#p1 { fill: #00FF00; }
	path[id="p2"] { fill: #FF0000; }
});

####First path filled green, second filled red (svg-stylus)

background-image: svgurl('./img/icon.svg') svg(path$p1 fill #00FF00, path$p2 fill #FF0000)

Multiple images

background-image: svgurl('./img/icon.svg') svg(rect fill #FF0000), svgurl('./img/othericon.svg') svg(rect fill #0000FF);

Resolving a relative path

The Stylus built-in function embedurl() can be used to resolve a relative URL (taking into account Stylus' options.paths as well) and pass the SVG data directly to svg-stylus:

background-image svgurl(embedurl('img/icon.svg')) svg(path fill #FF0000)

##Feedback, issues, bugs, etc. Create a issue at SVG Stylus Github page.

##License (MIT) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.