#### @Gapi [Falkordb](https://github.com/FalkorDB/falkordb-ts)
npm install @gapi/falkordb#### @Gapi Falkordb
##### For questions/issues you can write ticket here
##### This module is intended to be used with GAPI
##### To install this Gapi module, run:
``bash`
$ npm install @gapi/falkordb
##### Import inside AppModule or CoreModule
`typescript
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 {}
``