svgify

0.0.0 • Public • Published

svgify

A browserify transform for requiring SVG files to embed directly in your code.

The intention is to be able to quickly inline files saved from Illustrator - it's still a bit rough around the edges, but should improve over time.

Installation

npm install svgify

Usage

createElement = require('./file.svg')

Returns a function that will create a new SVG <g> element containing the contents of the SVG file supplied.

createElement([xOffset[, yOffset]])

Call the function and you'll get an element in return - optionally, you can pass x/y transform variables to offset the contents of the group.

var circle = require('./circle.svg')
var svg = document.createElement('svg')
 
// Assuming the circle is 64x64,
// this makes the center of the circle
// the origin.
var el = circle(-32, -32)
 
svg.appendChild(circle)
document.body.appendChild(svg)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.0
    4
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.0
    4

Package Sidebar

Install

npm i svgify

Weekly Downloads

4

Version

0.0.0

License

MIT

Last publish

Collaborators

  • hughsk