@bluntsoftware/iglue

API for connecting to IGlue servers

Usage no npm install needed!

<script type="module">
  import bluntsoftwareIglue from 'https://cdn.skypack.dev/@bluntsoftware/iglue';
</script>

README

Angular Library for Communicating to IGlue Servers

This library provides an api for communicating to an IGlue application.

Configuration

NPM

npm install @bluntsoftware/iglue -save

The following line will be added to your package.json file

"@bluntsoftware/iglue": "^2.1.1",

include the the following modules in your app module

import { NgModule } from '@angular/core';
import {HttpClientModule} from "@angular/common/http";
import {IGlueClientModule} from "@bluntsoftware/iglue";

@NgModule({
  imports: [
      IGlueClientModule.forRoot('http://jerb.bluntsoftware.com/FilesRUS'),
      HttpClientModule
  ]
})
export class AppModule {

}

The iglue module contains 3 providers

  1. Auth - for authenticating to the Iglue server.
  2. IGlue - for communicating to the Iglue api.
  3. Conduit - for communicating to your custom rest api.

Bluntsoftware LLC