@cemizm/smartmirror-shared
TypeScript icon, indicating that this package has built-in type declarations

0.1.13 • Public • Published

Shared library of the smart mirror project

Contains all shared components, directives, pipes and services, used by the smart mirror project.

Installation

To install this library, run:

$ npm install @cemizm/smartmirror-shared --save

Documentation

A generated documentation of this project can be found here:

GitHub Pages

Usage

After the Installation of the library via npm, you can import it into your Angular/Ionic application by adding the SmartMirrorModule to the AppModule:

import {BrowserModule} from "@angular/platform-browser";
import {NgModule} from "@angular/core";
import {AppComponent} from "./app.component";
import {SmartMirrorModule} from "@cemizm/smartmirror-shared";

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    SmartMirrorModule.forRoot({apiUrl: 'https://sm-webapi.azurewebsites.net/api'})
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule {
}

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

import {MirrorService} from "@cemizm/smartmirror-shared";

... 

  constructor(private mirrorService: MirrorService) {
  
  }

  getAll() {
    this.mirrorService.getAll().subscribe(mirrors => {
      this.mirrors = mirrors;
    }, err => {
      console.log(err);
    });
  }

License

MIT © Cem Basoglu

Readme

Keywords

Package Sidebar

Install

npm i @cemizm/smartmirror-shared

Weekly Downloads

15

Version

0.1.13

License

MIT

Last publish

Collaborators

  • cemizm