🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

react-svg-pathline

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-svg-pathline

React component for drawing SVG path through set of points, rendering straight lines where possible and smooth corners in other cases

0.6.0
latest
Source
npm
Version published
Weekly downloads
6.6K
-68.24%
Maintainers
1
Weekly downloads
 
Created
Source

react-svg-pathline

React component for drawing SVG path through set of points, smoothing the corners

Why?

SVG polyline is the simplest option for rendering "path" line through set of known points but it gives you a "broken" line with sharp corners. Using SVG path you can get smooth corners but it requires adding more points to original set. This component helps with rendering SVG path by generating correct SVG data from original set of points, producing "smooth path line" as result.

So instead of this:

    <svg>
        <polyline 
            points="0,0 125,0 125,125 250,125"  
            stroke="red" 
            strokeWidth="3"
            fill="none" />
    </svg>

polyline

You get this:

import React from 'react'
import {PathLine} from 'react-svg-pathline'

export class MyComponent extends React.Component {
  render() (
    <svg>
        <PathLine 
            points={[{x:0, y:0}, {x:125, y: 0}, {x:125, y:125}, {x:250, y:125}]} 
            stroke="red" 
            strokeWidth="3"
            fill="none"
            r={10}
            />
    </svg>
  )
}

pathline

Installation

Requires nodejs.

$ npm install react-svg-pathline

Live Example

$ npm i && npm i react react-dom && npm start

Open a browser at localhost:8080

Keywords

react

FAQs

Package last updated on 07 Feb 2023

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