test-project-angular2
TypeScript icon, indicating that this package has built-in type declarations

13.0.3-next.1 • Public • Published

Installing Clarity Angular npm version

The easiest way is to use the Angular CLI to automatically install Angular into your project

ng add @clr/angular

Then it should be setup automatically

Manual Installation

If you are unable to use the automatic method above, follow these steps.

  1. Install Clarity packages through npm:

    npm install @clr/angular @cds/core
    
  2. Import the ClarityModule into your Angular application's module. Your application's main module might look like this:

    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    import { ClarityModule } from '@clr/angular';
    import { AppComponent } from './app.component';
    
    @NgModule({
        imports: [
            BrowserModule,
            ClarityModule,
            ....
         ],
         declarations: [ AppComponent ],
         bootstrap: [ AppComponent ]
    })
    export class AppModule {    }
    

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i test-project-angular2

    Weekly Downloads

    0

    Version

    13.0.3-next.1

    License

    MIT

    Unpacked Size

    10.5 MB

    Total Files

    1097

    Last publish

    Collaborators

    • steve-haar