Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stradivario/gapi-apache-kafka
https://github.com/stradivario/gapi-apache-kafka
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stradivario/gapi-apache-kafka
- Owner: Stradivario
- Created: 2018-03-20T00:52:14.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T23:55:42.000Z (7 months ago)
- Last Synced: 2024-10-08T02:07:05.450Z (3 months ago)
- Language: JavaScript
- Size: 1.01 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @Gapi Kafka Module
![Build Status](http://gitlab.youvolio.com/gapi/gapi/badges/branch/build.svg)
#### @Gapi Kafka module
##### For questions/issues you can write ticket [here](http://gitlab.youvolio.com/gapi/gapi-apache-kafka/issues)
##### This module is intended to be used with [GAPI](https://github.com/Stradivario/gapi)## Installation and basic examples:
##### To install this Gapi module, run:```bash
$ npm install Stradivario/gapi-apache-kafka --save
```## Consuming gapi-apache-kafka
MAINTENANCE NEEDED!! Not updated to version 1.0.0!
##### Import inside AppModule or CoreModule
```typescriptimport { Module } from 'gapi';
import { KafkaModule } from 'gapi-apache-kafka';@Module({
imports: [
KafkaModule.forRoot({
host: '182.10.0.5',
port: 9092
})
]
})
export class CoreModule { }
```TODO: Better documentation...
Enjoy ! :)