2.0.0 • Published 6 years ago

ivy.angular.web v2.0.0

Weekly downloads
19
License
ISC
Repository
github
Last release
6 years ago

Ivy/Web

A series of Angular 4 helpers for working with some basic web services.
Currently, this module supports the following:

  • OsDetectionService
  • BrowserDetectionService
  • WindowRefService

Getting Started

To install, simply download the NPM package 'ivy/web'

NPM

npm install ivy/web

Yarn

yarn add ivy/web

Installing

Installing the module to your Angular application is as simple as including it in the Module Imports.

// Angular
import { NgModule } from '@angular/core';

// Ivy Material
import { IvyWebModule } from 'ivy/web';

// NgModule
@NgModule({
    providers: providers
})
export class TestModule {
    imports: [
        IvyWebModule.forRoot()
    ]
}

After you've installed the Module, you can simply inject the services into your application as necessary.

import { WindowRefService } from 'ivy/web';

export class TestClass {
    constructor(windowRef: WindowRefService) {
    }
}

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Ian Buchan - Initial work
2.0.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago