
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
react-highlightable
Advanced tools
Highlight values in your app when they're changed to emphasize them.
Highlight values in your app when they're changed to emphasize them.

If you want to test this locally, then: git clone http://github.com/mitchellvanw/react-highlightable and open /examples/index.html
npm install react-highlightable --save
var React = require('react');
var Highlightable = require('react-highlightable');
var App = React.createClass({
render: function() {
return (
<div>
<h1>Your App</h1>
<Timer />
</div>
);
}
});
var Timer = React.createClass({
getInitialState: function() {
return {secondsElapsed: 0};
},
tick: function() {
this.setState({secondsElapsed: this.state.secondsElapsed + 1});
},
componentDidMount: function() {
this.interval = setInterval(this.tick, 1000);
},
componentWillUnmount: function() {
clearInterval(this.interval);
},
render: function() {
return <div>Seconds Elapsed: <Highlightable>{this.state.secondsElapsed}</Highlightable></div>;
}
});
React.render(<App />, document.getElementById('mount-node'));
It expects text not an element (<Highlightable>...</Highlightable>) that will be highlighted.
If true, on mount it'll highlight the value on mount.
default: false
This will determine the background of the highlight.
default: #ae2240
The padding used for the highlighted item.
default: 2
The font color used when the item is highlighted.
default: #f2f2f2
The border radius used when the item is highlighted.
default: 2
The transition used when the item is highlighted.
default: all .3s ease
The delay in milliseconds when the highlighted item returns to a normal state.
Please, create issues and pull requests.
git clone https://github.com/mitchellvanw/react-highlightable
cd react-portal
npm install
npm install react
gulp
http://localhost:8080)portal.js (aka don't run npm run build)gulp eslint before every commit to preserve the coding style. Do you know there is a nice real-time checking integration for your editor? ;-)This package is maintained by Mitchell van Wijngaarden.
This package is licensed under the MIT license.
FAQs
Highlight values in your app when they're changed to emphasize them.
The npm package react-highlightable receives a total of 10 weekly downloads. As such, react-highlightable popularity was classified as not popular.
We found that react-highlightable 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
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.

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.