@santech/angular-common
TypeScript icon, indicating that this package has built-in type declarations

7.0.0-beta.4 • Public • Published

@santech/angular-common Dependency Status devDependency Status

@santech/angular-common is a npm module that exports santech common module for angular

Prerequisites

You need to have globally installed:

  • node 9.x.x
  • npm 5.x.x
  • yarn 1.x.x

Development

Install all the dependencies

yarn

Launch tests

yarn test

Build the package

yarn build

Publish the package

npm publish

Require package in your project

npm i @santech/angular-common -S

Import module

import { SantechCommonModule } from '@santech/angular-common';
// or
var SantechCommonModule = require('@santech/angular-common').SantechCommonModule;
// or
var SantechCommonModule = santech.AngularCommon.SantechCommonModule;

Examples

Angular 2

import { Component, Inject, NgModule } from '@angular/core';
import { CONFIG_END_POINTS, SantechCommonModule } from '@santech/angular-common';
import { SantechPlatformModule } from '@santech/angular-platform';
import { Authenticator } from '@santech/common';

@NgModule({
  imports: [
    SantechPlatformModule.forRoot(),
    SantechCommonModule.forRoot({
      endPointsProvider: {
        provide: CONFIG_END_POINTS,
        useValue: {
          endPoint: 'endpoint/to/gateway',
          wsEndPoint: 'ws://host:port',
        },
      },
    }),
  ],
  declarations: [AppComponent]
})
export class AppModule {}

@Component({
  selector: 'app',
  template: 'template',
})
export class AppComponent {
  constructor(auth: Authenticator) {
    // You get an Authenticator
  }
}

Package Sidebar

Install

npm i @santech/angular-common

Weekly Downloads

0

Version

7.0.0-beta.4

License

MIT

Unpacked Size

1.27 MB

Total Files

131

Last publish

Collaborators

  • outilssantech