
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
@etrigan/feature-toggles
Advanced tools
The feature toggling support in etrigan is designed to work ontop of a clustering approach like https://github.com/JakeGinnivan/gru.
The master will create the feature-updater, which fetches the initial state.
It will then write those features to a feature state file, which is used in the event features cannot be fetched during service start.
When the worker starts it will read it's state from the feature file. Whenever the master updates it's state (due to a config change in launch darkly) it will send a message to all workers telling them to update their features.
Rather than all the workers fetching their own toggle state, if specified the master subscribes to changes and tells the workers to update whenever the feature state changes.
Features will never change during a request, instead will take effect from the next request after they change.
By writing the last known feature state to a file, if your service restarts/crashes and it cannot fetch the features for any reason, your service can still start.
import { gru } from 'node-gru'
import {
createFeatureUpdater,
createFeatureReceiver,
createFeatureStateMiddleware,
isFeatureEnabled,
} from '@etrigan/feature-toggles'
gru({
master: async () => {
// In the master process we subscribe to toggle changes
// and they will be written to the feature state file.
await createFeatureUpdater(logger, {
featureStateFile: './test-features.json',
launchDarklySdkKey: 'SDK-KEY',
})
},
start: async () => {
// Create express app
app.use(
createFeatureStateMiddleware(
await createFeatureReceiver(logger, config.featureStateFile),
),
)
app.use(req => {
if (isFeatureEnabled(req.features, 'my-feature')) {
}
})
},
})
Error: Expecting feature state file to exist at /path/to/features.json
FAQs
Etrigan feature toggles
The npm package @etrigan/feature-toggles receives a total of 972 weekly downloads. As such, @etrigan/feature-toggles popularity was classified as not popular.
We found that @etrigan/feature-toggles 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.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.