0.3.0 • Published 8 years ago
@sgbj/angular-gist v0.3.0
angular-gist
Embed GitHub Gists in your Angular apps without an iframe.
Installation
To install this library, run:
$ npm install @sgbj/angular-gist --saveConsuming 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-gistand 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 buildTo lint all *.ts files:
$ npm run lintLicense
MIT © sgbj