
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@ibm/applinx-rest-apis
Advanced tools
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.
This library implements the Angular Package Format (APF).
The version of this package correlates with the ApplinX version. You should use the package version that matches your ApplinX installation version.
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) { }
}
FAQs
client for applinx rest-api
The npm package @ibm/applinx-rest-apis receives a total of 2 weekly downloads. As such, @ibm/applinx-rest-apis popularity was classified as not popular.
We found that @ibm/applinx-rest-apis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 20 open source maintainers collaborating on the project.
Did you know?
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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.