Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
chainable-check
Advanced tools
Creates a validator with the same requiredness behaviour as React.PropTypes validators
chainableCheck()
Creates a validation function with the same requiredness behaviour as React's
React.PropTypes
validators.
That is: the validaton function will not be called if the value it's supposed to
validate isn't given (or is null
), and the function will have an
.isRequired
property, which is a validation function which will return an
Error
if the value isn't given (or is null
).
This is effectively just a standalone version of React's internal
createChainableTypeChecker()
function from ReactPropTypes.js
.
chainableCheck()
can be used on the server, or bundled for the client using an
npm-compatible packaging system such as Browserify or
webpack.
npm install --save chainable-check
The browser bundle exposes a global chainableCheck
variable.
You can find it in the /dist directory.
var chainableCheck = require('chainable-check')
var isEven = chainableCheck(function(props, propName, componentName, location) {
var value = props[propName]
if (isNaN(parseFloat(value)) || !isFinite(value) || parseFloat(value) % 2 !== 0) {
return new Error(
`Invalid ${locationName} \`${propName}\` supplied to ` +
`\`${componentName}\`, expected an even number.`
)
}
})
var ExampleComponent = React.createClass({
propTypes: {
evenNumber: isEven
, requiredEvenNumber: isEven.isRequired
},
// ...
})
FAQs
Creates a validator with the same requiredness behaviour as React.PropTypes validators
The npm package chainable-check receives a total of 71 weekly downloads. As such, chainable-check popularity was classified as not popular.
We found that chainable-check 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.