0.1.1 • Published 9 years ago

url-to-vsvg v0.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

URL to VSVG

This is a small util to request a svg's content and then parse that content using vsvg.

Install

$ npm install url-to-vsvg

Usage

var URL2SVG = require( 'url-to-vsvg' )

URL2SVG( './foo.svg', function( err, svg ){
    if ( err ) return console.error( err )

    svg.children[ 0 ].innerHTML = ''
    svg.children[ 1 ].setAttribute( 'fill', 'tomato' )
    svg.children[ 2 ].setAttribute( 'fill', 'crimson' )
    svg.children[ 3 ].setAttribute( 'fill', 'honeydew' )
    svg.children[ 4 ].setAttribute( 'fill', 'crimson' )

    document.body.appendChild( svg._node );
})

If you have any issues open a ticket it probably has to do with the underlying libs

0.1.1

9 years ago

0.1.0

9 years ago