0.8.4 • Published 4 years ago

coarse-domino v0.8.4

Weekly downloads
3
License
MIT
Repository
-
Last release
4 years ago

This is a fork

  • Use domino instead of JSDOM

coarse

build status

convert an svg server-side with rough

A simple wrapper that converts SVGs server-side to a more rough version with rough.

Installation

$ npm install coarse

Example

So for example, to render an svg with rough:

const fs = require('fs');
const coarse = require('coarse');

const svg = fs.readFileSync('./input.svg');
const roughened = coarse(svg);

fs.writeFileSync('./output.svg', roughened);

API

coarse(input, options) ⇒ string

Convert an svg server-side with rough

Kind: global function Returns: string - The converted svg as a string

ParamTypeDefaultDescription
inputstringAn svg string to render with rough
optionsObject{}Global configuration options for rough

License

MIT

0.8.4

4 years ago

0.8.3

4 years ago