@gapi/falkordb
v1.8.152
Published
#### @Gapi [Falkordb](https://github.com/FalkorDB/falkordb-ts)
Downloads
92
Readme
@gapi/falkordb
@Gapi Falkordb
For questions/issues you can write ticket here
This module is intended to be used with GAPI
Installation and basic examples:
To install this Gapi module, run:
$ npm install @gapi/falkordbConsuming @gapi/falkordb
Import inside AppModule or CoreModule
import { Module } from '@rxdi/core';
import { FalkorDBModule } from '@gapi/falkordb';
@Module({
imports: [
FalkorDBModule.forRoot({
username: 'myUsername',
password: 'myPassword',
socket: {
host: 'localhost',
port: 6379,
},
}),
],
})
export class CoreModule {}