
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.
Create a javascript meter and animate it.
npm install --save js-meters
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>js meters</title>
<script type="text/javascript" src="./dist/js-meters.js"></script>
</head>
<body>
<h1>jQuery Meter</h1>
<div id="jquery-meter"></div>
<script type="text/javascript">
var meter = new jsMeters.jqueryMeter({
id: 'jquery-meter', //id of DOM element to which to attach the meter
radiusOuter: 100,
radiusInner: 80,
part: 3,
whole: 5,
strokeWhole: '#ddd',
strokePart: 'red',
strokeWidth: 20
});
meter.renderInitialMeterState().animateMeter();
</script>
</body>
</html>
import {jqueryMeter} from "js-meters/src/jquery/jquery-meter"
const meter = new jqueryMeter({
id: 'jquery-meter', //id of DOM element to which to attach the meter
radiusOuter: 100,
radiusInner: 80,
part: 3,
whole: 5,
strokeWhole: '#ddd',
strokePart: 'red',
strokeWidth: 20
});
meter.renderInitialMeterState().animateMeter();
meter:animation:start: Triggered when meter animation starts. Bound to the meter $el.meter:animation:done: Triggered when meter animation is done. Bound to the meter $el.(Not bundled)
//app.module.ts
import { BrowserModule } from '@angular/platform-browser'
import { NgModule } from '@angular/core'
import { AppComponent } from './app.component'
import { ngMetercomponent } from "js-meters/src/angular/meter.component"
@NgModule({
declarations: [
AppComponent,
ngMeterComponent
],
imports: [
BrowserModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
//app.component.ts
@Component({
selector: "ng-meter-container",
template: `
<ancb-meter [meter]="meter"></ancb-meter>
`
})
export class AppComponent {
meter: Object = {
radiusOuter: 100,
radiusInner: 80,
part: 3000,
whole: 5000,
strokeWhole: '#ddd',
strokePart: 'red',
strokeWidth: 20
}
}
FAQs
Create a javascript meter and animate it.
We found that js-meters 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.