0.3.0 • Published 6 years ago

@sgbj/angular-gist v0.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

angular-gist

Embed GitHub Gists in your Angular apps without an iframe.

Installation

To install this library, run:

$ npm install @sgbj/angular-gist --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 @sgbj/angular-gist

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 { GistModule } from '@sgbj/angular-gist';

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

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

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

@Component({
  selector: 'app',
  template: `<gh-gist src="https://gist.github.com/sgbj/95ab8e2e77150318e7bd25b8d00a3248.js"></gh-gist>`
})
class AppComponent {
}

Development

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

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © sgbj