npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

oblique-features

v1.0.1

Published

An AngularJS feature hiding implementation

Downloads

4

Readme

oblique-features

The oblique-features AngularJS module is intended to permit the enabling and disabling of features in a web application either through hard coded data sources or the use of a remote URI to retrieve feature enablement data once or on a set schedule.

Table of Contents

  1. Installation
  2. Features
  3. Usage
  1. Thank You
  2. TODOs
  3. Sample

Installation

bower install --save oblique-features

or

npm install --save-dev oblique-features

Building From Source

It is possible to build oblique-features from source. In order to do this:

  1. Clone out this repository.
  2. Ensure you have gulp installed (npm install -g gulp)
  3. Install the NPM and Bower dependencies: npm install && bower install
  4. Build: gulp

Features

  1. Feature status checking:
  2. Defaults to enabled unless explicitly disabled.
  3. Setting feature enabled / disabled data via hard-coded data sources.
  4. Setting feature enabled / disabled data via remote data sources:
  5. Single time, fire and forget, retrieval of JSON data; or
  6. Infinite, timed retrieval of JSON data; or
  7. Count limited, timed retrieval of JSON data.

Usage

To begin using oblique-features simply add the of-feature attribute to any HTML element or enclose a set of HTML tags in a <of-feature>...</of-feature> tag set.

If no feature="someFeatureName" attribute is found in either an of-feature HTML element or an HTML element containing the of-feature attribute, that HTML element is assumed to belong to the base feature.

Checking Feature Status

In order to determine if a feature should be enabled or disabled, the service provides the checkFeatureEnabled(featureName). This function will return true if the feature is either explicitly enabled or is omitted from the data set or false if the feature is explicitly disabled.

Base Required For All Other Features?

If desired, it is possible for the enabled / disabled status of individual features to be influenced by whether or not the base feature is enabled. If, for example, a security flaw is found, it would be possible to disable every feature by simply setting base to be false, and calling featuresService.setBaseRequiredForAllFeatures(true).

At this point, if base ever becomes disabled, any element with an of-feature element will be disabled.

Disabling Features

For ease of use and mitigation of unintended consequences, all features are enabled by default. In order to prevent a feature from being displayed, the feature must be disabled. There are multiple ways of disabling features in oblique-features:

  1. Toggling the individual feature; or
  2. Setting a feature dictionary with the feature disabled; or
  3. Setting a remote JSON file with the desired features disabled in it.

Toggling Individual Features

This is more useful for testing applications, to ensure that when a feature is disabled, all of the relevant items are hidden and that it does not have any adverse effect on the remainder of the web application.

To toggle an individual feature, one could set up the AngularJS JavaScript as follows:

  angular.module('some-module').controller('someController', ['featuresService', function(featuresService) {
    this.toggleFeature = function(featureName) {
      featuresService.toggleFeature(featureName);
    }
  }]);

And then have an HTML setup as follows:

  <div class="someFeatureDiv" of-feature feature="disableMe">
    <!-- Some content goes here -->
  </div>
  <button ng-click="ctrl.toggleFeature('disableMe')">Disable Feature</button>

Disabling Features Via Hard-Coded JSON Data

This functionality is most useful if it is unlikely that deployed functionality will need to be adjusted on the fly. In this method of feature disabling, the hard-coded JSON source is passed into the service and will over-write any other feature enabled / disabled status which had been previously set. As an example:

  angular.module('some-module').controller('someController', ['featuresService', function(featuresService) {
    var jsonData = {
      base: true,
      signup: false,
      accountDeletion: false,
      dataViewing: true
    };
    featuresService.setHardCodedSource(jsonData);
  }]);

In this example, signup and accountDeletion functionality would be disabled while all other functionality would be enabled.

Disabling Features Via Remote JSON Data

This functionality is most useful if there is a high probability that functionality will need to be enabled / disabled on the fly without a full re-deploy of the web application. In this case, the functionality dictionary needs to be deployed to a known URI which can be passed in to the setRemoteSource method.

With the remote source, it is also possible to set a timeout to retrieve the remote source again to facilitate hot-disabling of functionality within a certain timeframe. Taking the JSON data from the above example, if it were to be placed at http://foofoo.net/features.json, could be retrieved every 5 minutes by doing the following:

  angular.module('some-module').controller('someController', ['featuresService', function(featuresService) {
    featuresService.setRemoteSource('http://foofoo.net/features.json', 5601000);
  }]);

Thank You

I would like to thank my employer, Employii for permitting me to re-write and open source an element of our web application which I feel will be beneficial for the AngularJS community at large.

TODOs

The following are items I intend to get to in the near future:

  1. An angular-meteor implementation which can read status from MongoDB.
  2. Setting up the oblique-features wiki with better examples.
  3. Setting up a samples section which will display the module working in various formats.

Sample

Currently, the web page which is used for the e2e tests in the repo can be used for a brief and limited overview of the functionality of this module.

Execution:

  1. In the oblique-features directory, execute: gulp serve.
  2. Navigate to: https://localhost:9000/