JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3003
  • Score
    100M100P100Q145441F
  • License BSD

The inkscape utility as a readable/writable stream

Package Exports

  • inkscape

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (inkscape) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

node-inkscape

The inkscape command line utility as a readable/writable stream. This is handy for situations where you don't want to worry about writing the input to disc and reading the output afterwards.

The constructor optionally takes an array of command line options for the inkscape binary:

var Inkscape = require('inkscape'),
    svgToPdfConverter = new Inkscape(['--export-pdf', '--export-width=1024']);

sourceStream.pipe(svgToPdfConverter).pipe(destinationStream);

Inkscape as a web service (converts to a PNG):

var Inkscape = require('inkscape'),
    http = require('http');

http.createServer(function (req, res) {
    if (req.headers['content-type'] === 'image/svg') {
        res.writeHead(200, {'Content-Type': 'image/png'});
        req.pipe(new Inkscape(['-e'])).pipe(res);
    } else {
        res.writeHead(400);
        res.end('Feed me an SVG!');
    }
}).listen(1337);

Installation

Make sure you have node.js and npm installed, and that the inkscape binary is in your PATH, then run:

npm install inkscape

License

3-clause BSD license -- see the LICENSE file for details.