ngx-tabby
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

ngx-tabby

ngx-tabby is a gentle angular easter egg that will leave you warm and cozy on the inside.

Demo

Getting Started

    npm install ngx-tabby --save

Usage

Import service

Import into your app module as a provider.

    // app.module

    import { TabbyService } from 'ngx-tabby';

    @NgModule({
        providers: [
            // Kittens galore
            TabbyService
        ]
    });

Initialize

Initialize in your app component.

    import { TabbyService } from 'ngx-tabby';

    export class AppComponent {

        constructor(private tabbyService: TabbyService) {

            this.tabbyService.init();

        }
    }

Using Webpack

This should work well out of the box with webpack.

Using System.js

Map ngx-tabby and declare as a package

    // systemjs.config.js

    map: {
      "ngx-tabby": "npm:ngx-tabby",
    },    
    packages: {
      'ngx-tabby': {
        main: './index.js',
        defaultExtension: 'js'
      }
    }

Use

Show me kittens! Press TAB + b and let the cuteness overwhelm you.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i ngx-tabby

      Weekly Downloads

      1

      Version

      1.0.0

      License

      none

      Last publish

      Collaborators

      • dqsmith