w4-forms

1.1.0 • Public • Published

w4-forms - Angular library built with ❤ using ngx-library yeoman generator.

npm version, Build Status Coverage Status dependency Status devDependency Status Greenkeeper Badge

Demo

View all the directives in action at https://carlosthe19916.github.io/w4-forms

Dependencies

  • Angular (requires Angular 2 or higher, tested with 2.0.0)

Installation

Install above dependencies via npm.

Now install w4-forms via:

npm install --save w4-forms

SystemJS

Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle. In your systemjs config file, map needs to tell the System loader where to look for w4-forms:

map: {
  'w4-forms': 'node_modules/w4-forms/bundles/w4-forms.umd.js',
}

Once installed you need to import the main module:

import { LibModule } from 'w4-forms';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()):

import { LibModule } from 'w4-forms';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [LibModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import LibModule:

import { LibModule } from 'w4-forms';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [LibModule, ...], 
})
export class OtherModule {
}

Usage

License

Copyright (c) 2018 Carlos Feria. Licensed under the MIT License (MIT)

/w4-forms/

    Package Sidebar

    Install

    npm i w4-forms

    Weekly Downloads

    1

    Version

    1.1.0

    License

    MIT

    Unpacked Size

    103 kB

    Total Files

    100

    Last publish

    Collaborators

    • carlosthe19916