Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ yarn add nestjs-redis

**NPM**
```bash
npm install nestjs-redis --save
npm install nestjs-redis
```

### Getting Started
Let's register the RedisModule in `app.module.ts`

```typescript
import { Module } from '@nestjs/common'
import { RedisModule} from 'nestjs-redis'
import { RedisModule } from 'nestjs-redis'

@Module({
imports: [
Expand All @@ -33,7 +33,7 @@ export class AppModule {}
With Async
```typescript
import { Module } from '@nestjs/common';
import { RedisModule} from 'nestjs-redis'
import { RedisModule } from 'nestjs-redis'

@Module({
imports: [
Expand Down