
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
react-progress-2
Advanced tools

npm install react-progress-2
jspm install npm:react-progress-2
Include react-progress-2/main.css to your project. With SystemJS CSS plugin you simply need to write this line:
import "react-progress-2/main.css!"
Include react-progress-2 and put it somewhere in the top-component, for example:
import React from "react";
import Progress from "react-progress-2";
var Layout = React.createClass({
render: function() {
return (
<div className="layout">
<Progress.Component/>
{/* other components go here*/}
</div>
);
}
});
Now, whenever you need to show an indicator, just call Progress#show, for example:
loadFeed: function() {
Progress.show();
// do your ajax thing.
},
onLoadFeedCallback: function() {
Progress.hide();
// render feed.
}
Please note, that show and hide calls are stacked, so after n-consecutive show calls, you need to do n hide calls to hide an indicator or you can use Progress.hideAll().
.loader-60devs .loader-60devs-progress {
background: #ff6f00;
}
<Progress.Component
style={{background: 'orange'}}
thumbStyle={{background: 'green'}} />
Do the following steps if you have the willing to fix a bug or just add some features to react-progress-2
cd dev
npm install
jspm install
gulp watch
# change the world!
Created in 2015 by Ruslan Prytula (@milworm).
FAQs
React progress 2
The npm package react-progress-2 receives a total of 711 weekly downloads. As such, react-progress-2 popularity was classified as not popular.
We found that react-progress-2 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

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.