Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-routsy
Advanced tools
Tiny React component for routing on individual pages
npm install react-router --save
import React, {Component, render} from 'react';
import {Route, navigateTo} from 'react-routsy';
class CustomComponent extends Component {
go () {
navigateTo('/do-this');
}
render () {
return (
<div>
<Route path='/do-this'>
<div>This gets rendered only when the path matches</div>
</Route>
<Route path='/users/:id'>
<p onClick={this.go.bind(this)}>
This is renedered with id available on {this.props.router.params.id}.
This is also available on child component props.
</p>
</Route>
<Route path='/'>
This gets rendered when the hash is #/ or #
</Route>
</div>
);
}
}
render(<CustomComponent />, document.body);
required
The path that should trigger the rendering of the Route component. All routes are hash-based, so /
as a path is equal to #/
in the hash.
optional
Takes and object and maps keys and objects in the route params to specified keys, and then passes them in the children component's props. This is useful in decoupling components from the router.
let paramsMap = {
id: 'somePropName'
};
<Route path="/users/:id" paramsAsProps={paramsMap}>
<CustomComponent />
</Route>
this.props.somePropName
is now available when defining <CustomComponent />
.
npm install
npm test
FAQs
Tiny React component for routing on individual pages
The npm package react-routsy receives a total of 0 weekly downloads. As such, react-routsy popularity was classified as not popular.
We found that react-routsy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.