Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
feature-toggle-service
Advanced tools
The simplest solution for feature toggle in Javascript. Simple how it should be.
The simplest solution for feature toggles in Javascript. Simple how it should be.
This is a common concept, but why use this directive instead solve it via server-side rendering?
The idea of this directive is make this process transparent and easier. So the main point is integrate this directive with other tooling process, such as:
You can integrate with WebSockets or handling this in a EventSourcing architecture. It's totally transparent for you and you can integrate easier in your application.
Make sure that you are using the NodeJS version is the same as .nvmrc
file version. If you don't have this version please use a version manager such as nvm
or n
to manage your local nodejs versions.
Please make sure that you are using NodeJS version 6.10.2
Assuming that you are using nvm
, please run the commands inside this folder:
$ nvm install $(cat .nvmrc); # install required nodejs version
$ nvm use $(cat .nvmrc); # use nodejs version
$ npm install
In Windows, please install NodeJS using one of these options:
Via NVM Windows
package: Dowload via this link. After that, run the commands:
$ nvm install $(cat .nvmrc); # install required nodejs version
$ nvm use $(cat .nvmrc); # use nodejs version
$ npm install
Via Chocolatey:
$ choco install nodejs.install -version 6.10.2
Try out the demo!
$ npm start
$ npm test # run the tests
$ npm run build # run the tests
FeatureToggleService
This service exposes a few different methods with which you can interact with feature toggle service.
featureToggleService.setConfigurationObject(obj)
Adds the feature toggle configuration in your application. This information will be private and checked via featureToggleService.isOn(key)
and featureToggleService.isOff(key)
methods.
featureToggleService.isOn(key)
Checks if the feature toggle configuration has the string key value with true
value.
featureToggleService.isOff(key)
Checks if the feature toggle configuration does not have the string key value with true
value.
Wilson Mendes (willmendesneto)
FAQs
The simplest solution for feature toggle in Javascript. Simple how it should be.
The npm package feature-toggle-service receives a total of 6,191 weekly downloads. As such, feature-toggle-service popularity was classified as popular.
We found that feature-toggle-service 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.