
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
react-awesome-feature-toggles
Advanced tools
This plugin provides a feature toggle component
Install react-awesome-feature-toggles using npm:
npm install --save react-awesome-feature-toggles
Use setFeatureConfig
to set you config. It accepts an object with keys which will be used as the names of your features. It currently does not (yet) support nested objects
import { setFeatureConfig } from 'react-awesome-feature-toggles'
setFeatureConfig({
"awesome.feature": true,
"disabled.feature": false
})
Now use the <FeatureToggle />
Component to conditionally render children
import { FeatureToggle } from 'react-awesome-feature-toggles'
return (
<div>
<FeatureToggle name="awesome.feature">
This text is rendered
</FeatureToggle>
<FeatureToggle name="disabled.feature">
This text is not rendered
</FeatureToggle>
</div>
)
You can also use <FeatureToggle />
to enable routes conditionally. The disabled routes are taken from the route structure just like as if they do not exist:
import { Route, IndexRoute, match } from 'react-router'
import { FeatureToggle } from 'react-awesome-feature-toggles'
const routes = (
<Route name="home" path="/">
<IndexRoute />
<FeatureToggle name="awesome.feature">
<Route name="route1" path="route1" />
</FeatureToggle>
<FeatureToggle name="disabled.feature">
<Route name="route2" path="route2" />
</FeatureToggle>
</Route>)
This would lead to a router that matches /route1
but not /route2
.
MIT
FAQs
Simple feature toggles for react and react router
The npm package react-awesome-feature-toggles receives a total of 11 weekly downloads. As such, react-awesome-feature-toggles popularity was classified as not popular.
We found that react-awesome-feature-toggles 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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.