Skip to content

A simple starter for a shared Angular (Angular2) library

Notifications You must be signed in to change notification settings

denissb/angular-library-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular library starter

This starter is based on generator-angular2-library for Yoman. If you want to use this simply check out the project and replace all occurrences of angular-library-starter with the name of your library. This project is not published to npm as it is intended as a starter.

Installation (after publishing to npm)

To install this library after publishing it to npm, run:

$ npm install angular-library-starter --save

Consuming your library

Once you have published your library to npm, you can import your library in any Angular application by running:

$ npm install angular-library-starter

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { SampleModule } from 'angular-library-starter' // or name of your library;

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    SampleModule.forRoot()
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use its components, directives and pipes in your Angular application:

<!-- You can now use your library component in app.component.html -->
<h1>
  {{title}}
</h1>
<sample-component></sample-component>

Development

To generate all *.js, *.js.map and *.d.ts files:

$ npm run build

To watch for changes and then generate *.js, *.js.map and *.d.ts files:

$ npm run watch

To generate a UMD bundle:

$ npm run bundle

To lint all *.ts files:

$ npm run lint

Testing

To run tests:

$ npm run test

Warning: remapCoverageReporter currently does not work, seems like a compatability issue - so no coverage reports

License

MIT © denissb

About

A simple starter for a shared Angular (Angular2) library

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published