
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@planview/pv-utilities
Advanced tools
Implementation of Planview Design System Utilities
following the specification.
Go to the official documentation for more details
You can install @planview/pv-utilities
in multiple ways:
npm install styled-components --save # peerDependency
npm install @planview/pv-utilities --save
yarn add styled-components # peerDependency
yarn add @planview/pv-utilities
import React from 'react'
import styled from 'styled-components'
// Set of elemental, reusable styles such as colors, sizes, spacing, text...
import { color, size } from '@planview/pv-utilities'
// You can use pv-utilities with a styled component...
const StyledButton = styled.div`
background-color: ${color.greenRegular};
`
function Component() {
return (
// ...or with a regular dom element
<div style={{ padding: `${spacing.small}px` }}>
<StyledButton>Click me</StyledButton>
</div>
)
}
FAQs
Set of shared utilities from Planview's Design System
The npm package @planview/pv-utilities receives a total of 628 weekly downloads. As such, @planview/pv-utilities popularity was classified as not popular.
We found that @planview/pv-utilities demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.