
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
ember-cli-feature-manager
Advanced tools
Feature Manager addon allows developers to define and turn on/off features for different reasons. It also allows them to test different implementations of a particular feature.
This addon can only be used by the latest version of ember-cli (0.2.3)
You can add the addon into your application with the command below:
ember install ember-cli-feature-manager
This addon reads the setup/configuration data from the ENV.APP
of the config/environment.js
file.
You can specify the names of the service and feature-data using
featureManagerService
and featureManagerFixturesName
attributes respectively.
These default to features
and FEATURES
respectively.
The service name is what get used when injecting the addon into routes, controllers, and components. The feature-data name specifies the array object that contains a list of features. Below is the data format:
[{
"name": "<string>",
"flag": "<boolean>",
"implementations": "<[]>",
"selected": "<string>"
}, {
}
...
]
Ex:
APP: {
featureManagerService: 'features'
featureManagerFixtures: 'FEATURES',
FEATURES: [{
name: 'search',
flag: true,
implementations: ['facetView', 'backend-solr', 'backend-essearch', 'google'],
selected: 'facetView'
},{
name: 'login',
flag: true
}]
}
git clone
this repositorynpm install
bower install
ember server
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
implementation
and selected
attributes, will be usedFAQs
The default blueprint for ember-cli addons.
The npm package ember-cli-feature-manager receives a total of 3 weekly downloads. As such, ember-cli-feature-manager popularity was classified as not popular.
We found that ember-cli-feature-manager 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.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.