Socket
Book a DemoInstallSign in
Socket

@ibm/applinx-rest-apis

Package Overview
Dependencies
Maintainers
20
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ibm/applinx-rest-apis

client for applinx rest-api

10.15.7
latest
npmnpm
Version published
Weekly downloads
4
300%
Maintainers
20
Weekly downloads
 
Created
Source

IBM ApplinX REST API 10.15.7

Description

Angular client for ApplinX REST API. This package may be used by the Angular web emulation project to communicate with hosts through the ApplinX REST API.

Format

This library implements the Angular Package Format (APF).

Release Notes

The version of this package correlates with the ApplinX version. You should use the package version that matches your ApplinX installation version.

General usage

In your Angular project:

// without configuring providers
import { ApiModule } from '@ibm/applinx-rest-apis';
import { HttpClientModule } from '@angular/common/http';


@NgModule({
    imports: [
        ApiModule,
        // make sure to import the HttpClientModule in the AppModule only,
        // see https://github.com/angular/angular/issues/20575
        HttpClientModule
    ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}
// configuring providers
import { ApiModule, Configuration, ConfigurationParameters } from '@ibm/applinx-rest-apis';

export function apiConfigFactory (): Configuration => {
  const params: ConfigurationParameters = {
    // set configuration parameters here.
  }
  return new Configuration(params);
}

@NgModule({
    imports: [ ApiModule.forRoot(apiConfigFactory) ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}
import { SessionService } from '@ibm/applinx-rest-apis';

export class AppComponent {
	 constructor(private sessionService: SessionService) { }
}

License of this package

Apache-2.0

Keywords

swagger-client

FAQs

Package last updated on 25 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.