
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
map-props
wraps a React component and allows mapping prop values passed in to other prop values expected by
the wrapped component.
npm install --save map-props
This project follows SemVer and each release is posted on the Release Notes page.
import React, {Component, PropTypes} from 'react';
import mapProps from 'map-props';
class UserProfile extends Component {
static propTypes = {
firstName: PropTypes.string.isRequired,
lastName: PropTypes.string.isRequired
}
render() {
const {firstName, lastName} = this.props;
return <div className="user-profile">{firstName} {lastName}</div>;
}
}
// wrap this component to create a component that expects only a fullName prop
UserProfile = mapProps({
firstName: props => props.fullName.split(' ')[0],
lastName: props => props.fullName.split(' ')[1]
})(UserProfile);
export default UserProfile;
Then render this component:
<UserProfile fullName="Bobby Tables"/>
By mapping props using a Higher Order Component, you can increase the reusability of other "dumb" (pure and stateless) components.
This library was inspired by, and intended to be used in conjunction with redux
,
reselect
and redux-form
,
although it does not depend on any of those libraries and can be used in any React-based project.
Using ES7 decorator proposal, the example above could be written as:
@mapProps({
firstName: props => props.fullName.split(' ')[0],
lastName: props => props.fullName.split(' ')[1]
})
export default class UserProfile extends Component {
You can enable ES7 decorators with Babel Stage 1. Note that decorators are experimental, and this syntax might change or be removed later.
mapProps(mapping:Object)
mapping : Object
a mapping from
propName
to a function that takes all the props and produces the value to pass to the wrapped component aspropName
.
This is an extremely young library, so the API may change. Comments and feedback welcome.
FAQs
A higher order component to map React props
We found that map-props 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.