Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 896 Bytes

README.md

File metadata and controls

36 lines (20 loc) · 896 Bytes

node-raphael

using the beatiful SVG library Raphaël on node.js to generate svg-data.

Features

  • static svg generation with raphael

Installation

npm install node-raphael

Motivation

NIH - not invented here ... srsly .. i want to generate some good looking charts without using javascript on client side (because this is lame for none-interactive images)

Usage

var raphael = require('node-raphael');
var svg = raphael.generate(width, height, function draw(paper) { … });

WARNING

jsdom just implements a DOM 1.0, which only covers SVG 1.0, but raphael uses SVG 1.1, so features like text may not work.

Example

SVG Server with Raphaël Logo:

TODO

  • More documentation
  • tests