Socket
Book a DemoInstallSign in
Socket

coarse

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coarse

convert an svg server-side with rough

latest
npmnpm
Version
0.8.3
Version published
Weekly downloads
3
-88.46%
Maintainers
1
Weekly downloads
 
Created
Source

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
[options]Object{}Global configuration options for rough

License

MIT

FAQs

Package last updated on 24 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts