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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ng-component-api

v0.0.1

Published

Ng Component Api

Readme

ng-component-api

Provides an extra layer for register AngularJs components v1.5.x.

Install

npm install ng-component-api --save

Understanding Components

In AngularJS, a Component is a special kind of directive that uses a simpler configuration which is suitable for a component-based application structure.

This makes it easier to write an app in a way that's similar to using Web Components or using the new Angular's style of application architecture.

Advantages of Components:

  • simpler configuration than plain directives
  • promote sane defaults and best practices
  • optimized for component-based architecture
  • writing component directives will make it easier to upgrade to Angular

When not to use Components:

  • for directives that need to perform actions in compile and pre-link functions, because they aren't available
  • when you need advanced directive definition options like priority, terminal, multi-element
  • when you want a directive that is triggered by an attribute or CSS class, rather than an element

Creating and configuring a Component

Components can be registered using the .component() method of an AngularJS module (returned by {@link module angular.module()}). The method takes two arguments:

  • The name of the Component (as string).
  • The Component config object. (Note that, unlike the .directive() method, this method does not take a factory function.)

Example:

  import angular from 'angular';

  const mortgageForm = {
    template: `
      <form>
        {{ $ctrl.applicant | json }}
      </form>
    `,
    controller() {
      this.applicant = {
        name: 'Todd Motto',
        email: '[email protected]'
      };
    }
  };

  angular.module('app', []).component('mortgageForm', mortgageForm);

Creating and configuring a Component with ng-component-api

tab-component.js

    var tab = {
      bindings: {
        label: '@'
      },
      require: {
        tabs: '^^'
      },
      transclude: true,
      template: `
        <div class="tabs__content" ng-if="$ctrl.tab.selected">
          <div ng-transclude></div>
        </div>
      `,
      controller: function () {
        this.$onInit = function () {
          this.tab = {
            label: this.label,
            selected: false
          };
          this.tabs.addTab(this.tab);
        };
      }
    };
    
    export default tab;

tabs-component.js

  import tab from 'tab-component.js';
  
  var tabs = {
    components: { tab }, // <- with ng-component-api
    transclude: true,
    controller: function () {
      this.$onInit = function () {
        this.tabs = [];
      };
      this.addTab = function addTab(tab) {
        this.tabs.push(tab);
      };
      this.selectTab = function selectTab(index) {
        for (var i = 0; i < this.tabs.length; i++) {
          this.tabs[i].selected = false;
        }
        this.tabs[index].selected = true;
      };
    },
    template: `
      <div class="tabs">
        <ul class="tabs__list">
          <li ng-repeat="tab in $ctrl.tabs">
            <a href=""
              ng-bind="tab.label"
              ng-click="$ctrl.selectTab($index);"></a>
          </li>
        </ul>
        <div class="tabs__content" ng-transclude></div>
      </div>
    `
  };
  
  export default tabs;

app.js

  import angular from 'angular';
  import compApi from 'ng-component-api';
  
  // init
  compApi.install(angular);
  
  import tabs from 'tabs-component.js';
  import other from 'other-component.js';
  
  // Regiter component
  angular.module('app', []).components({ tabs, other });

tabs.html

<tabs selected="0">
  <tab label="Tab 1">...</tab>
  <tab label="Tab 2">...</tab>
  <tab label="Tab 3">...</tab>
</tabs>

License

The Mit License