Skip to content

sky-coding/angular-2-webpack-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

af81fe0 · Oct 23, 2016

History

9 Commits
Sep 27, 2016
Oct 18, 2016
Sep 27, 2016
Sep 27, 2016
Oct 18, 2016
Sep 27, 2016
Oct 18, 2016
Oct 23, 2016
Oct 18, 2016
Oct 18, 2016
Sep 27, 2016
Sep 27, 2016
Oct 18, 2016
Oct 18, 2016

Repository files navigation

angular-2-webpack-library

This repo is a seed for building an Angular 2 library with Webpack. Supports Angular 2.0.0, Webpack 2, and Typescript 2.

Build Library

npm install

npm run build

Run Demo application (consumes Library)

npm run server:demo

Deploy Library (optional)

npm version major

npm publish

Remember to update package.json and webpack.config.js with the name of your library.

Install Library into independent application

npm install <your-library-name> --save

Webpack

Using webpack for bundling the library gives us all of the configuration and ease-of-use that webpack provides (no task runners!) Some important features the library uses webpack for:

  • components can have separate files for templates and styles
  • styles can be preprocessed (LESS/SASS) via webpack loaders
  • additional assets are exported (images, SASS files)

Here is a sample component exported from the library:

// ./src/components/sample.component.ts
import {Component, OnInit} from '@angular/core';

@Component({
  selector: 'sample-component',
  template: `
    <h1>Sample Component</h1>
  `
})
export class SampleComponent implements OnInit {

  public foo: string = 'foo';

  constructor() {
  }

  ngOnInit() {
    console.log('hello from SampleComponent');
  }
}

And here is how to consume it:

import { Angular2Module, SampleComponent } from 'angular-2-webpack-library';

@NgModule({
  imports: [
    Angular2Module
  ]
})

Sample Component is now usable in the consumer using <sample-component></sample-component>.

This setup is awesome, and is ready to serve as the foundation for Angular 2 libraries!


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published