
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@dinoabsoluto/flex-progress
Advanced tools
CLI progress bar made simple
An object-oriented approach to progress bar.
ratio property and
you're good to go.const FlexProgress = require('@dinoabsoluto/flex-progress')
// ESModules or Typescript
// import * as FlexProgress from '@dinoabsoluto/flex-progress'
const out = new FlexProgress.Output()
const bar = new FlexProgress.Bar({ width: 25 })
out.append(
1, new FlexProgress.Spinner(),
1, 'Hello World!',
1, new FlexProgress.Spinner(),
1, '⸨', bar, '⸩'
)
let count = 0
const loop = setInterval(() => {
count++
bar.ratio = (count % 39) / 38
}, 80)



NOTE: The images above are screen captures of the demos in folder examples.
This was inspired by CSS Flexbox concept, although much simpler.
Basically, all elements have flexShrink and flexGrow properties,
which controls how much they shrink/grow. (flex is a shorthand for both)
In most case, you'll want your progress Bar to have fixed width and a Text
with flexShrink set to 1. This way, your text will fill up the
CLI width, but will truncate at the end of the line.
See documents for more details.
For a simple explanation see this example.
FAQs
Progress indicator for Node.js
We found that @dinoabsoluto/flex-progress 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.