New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@biit-solutions/kafka-event-structure

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@biit-solutions/kafka-event-structure

This library contains services and data structure to be used with Kafka Proxy

latest
Source
npmnpm
Version
0.0.83
Version published
Maintainers
3
Created
Source

KafkaEventStructureLib

This library contains services and data structure to be used with Kafka Proxy

Build

Run npm run build to build the library. The build artifacts will be stored in the dist/ directory.

Publishing

After building your library with npm run build, go to the dist folder cd dist/kafka-event-structure and run npm publish.

Using library in other applications.

The first step once imported this library in your project is to configure service url.

On AppComponent or any other place you consider, you need to set serverURL with the root url where server is allocated.

constructor (private rootService: RootService) {
  rootService.serverUrl = 'https://www.exemple.com/kafka-proxy'
}

Once server is configured, the rest of the services can be used.

constructor(private eventService: EventService) {
 [...]
}

[...]

private publishEvent(event: Event<Object>, topic: string): void {
  this.eventService.createEvent(event, topic).subscribe(response => { [...] });
}

FAQs

Package last updated on 10 Nov 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