
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
A Sass mixin that lets you draw a simple line, chevron, or arrow with ASCII art, and generates an inline SVG background image.
A Sass mixin that generate an inline SVG background images by drawing a line with an ASCII art syntax similar to grid-template-areas. Ideal for generating simple decorative shapes like chevrons or arrows.
npm i -D drawline
@import '../../node_modules/drawline/drawline';
// A right-facing chevron
.right-chevron {
background-image: drawline(
('-1---' // A Sass list of ASCII art strings
'-----'
'---2-'
'-----'
'-3---'),
#000, // The stroke color of the line
10, // The stroke-width of the line (as a percent of the image width, because viewBox is `0 0 100 100`)
miter, // The stroke-linejoin of the line
square, // The stroke-linecap of the line
false // Whether the last point should connect to the first (i.e. `<polyline>` vs `<polygon>`)
);
}
FAQs
A Sass mixin that lets you draw a simple line, chevron, or arrow with ASCII art, and generates an inline SVG background image.
We found that drawline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.