Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
react-querystring-router
Advanced tools
Bare router for React components, using props as query string
Bare router for React components, using query string as props.
http://mysite.com/?component=Father&eyes=blue&mood=happy
This route will render the component class returned by getComponentClass
using the following props:
{
component: 'Father',
eyes: 'blue',
mood: 'happy'
}
var Router = require('react-querystring-router').Router;
var myRouter = new Router({
// These props will be sent to all components loaded, and will be overridden
// by the ones in the URL query string
defaultProps: {
fries: true
},
// This is how the router maps component names to corresponding classes
getComponentClass: function(props) {
return require('components/' + props.component + '.jsx');
},
// Tell React where to render in the DOM
container: document.getElementById('content'),
// Called whenever the route changes (also initially), receiving the parsed
// props as the first argument
onChange: function(props) {
// E.g. Use the props to set a custom document.title
}
});
The router always sends a reference to itself to the rendered component through
the router
prop.
var stringifyParams = require('react-querystring-router').uri.stringifyParams;
//...
render: function() {
return <div className="serious-component">
<a href={stringifyParams({lifeChangingProp: 1})}
onClick={this.props.router.routeLink}>
Click me por favor
</a>
</div>;
};
FAQs
Bare router for React components, using props as query string
The npm package react-querystring-router receives a total of 4 weekly downloads. As such, react-querystring-router popularity was classified as not popular.
We found that react-querystring-router 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.