
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
pure-render-decorator
Advanced tools
An ES7 decorator to make React components "pure".
PureComponent
base class to make a component pure.npm install pure-render-decorator
import {Component} from 'react';
import pureRender from 'pure-render-decorator';
@pureRender
export default class Test extends Component {
render() {
return <div />;
}
}
The above example is the same as using PureRenderMixin
:
var React = require('react');
var PureRenderMixin = require('react-addons-pure-render-mixin');
var Test = React.createClass({
mixins: [
PureRenderMixin
],
render: function() {
return <div></div>;
}
});
As decorators are simply functions, you can also use pureRender()
without the decorator syntax:
import {Component} from 'react';
import pureRender from 'pure-render-decorator';
class Test extends Component {
render() {
return <div />;
}
}
export default pureRender(Test);
FAQs
Makes React components pure.
The npm package pure-render-decorator receives a total of 7,661 weekly downloads. As such, pure-render-decorator popularity was classified as popular.
We found that pure-render-decorator 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.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.