Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
fix(merge conflict): master <-- master
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Mar 5, 2021
2 parents 740c713 + 81f4359 commit 98de6ee
Show file tree
Hide file tree
Showing 24 changed files with 33,524 additions and 2,108 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.1.8](https://github.com/kkoomen/nestjs-throttler-storage-redis/compare/v0.1.6...v0.1.8) (2021-03-05)

### Features

- replace nestjs-throttler with @nestjs/throttler package ([4184f61](https://github.com/kkoomen/nestjs-throttler-storage-redis/commit/4184f61d3c15c922e60312befbb2ead8c6270f64))

## [0.1.7](https://github.com/kkoomen/nestjs-throttler-storage-redis/compare/v0.1.5...v0.1.7) (2021-02-22)

### Bug Fixes
Expand Down
17 changes: 7 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# NestJS Throttler Redis Storage

Redis storage provider for the [nestjs-throttler](nestjs-throttler) package.
Redis storage provider for the [@nestjs/throttler](https://github.com/nestjs/throttler) package.

# Installation

### Yarn

- `yarn add nestjs-throttler nestjs-throttler-storage-redis ioredis`
- `yarn add nestjs-throttler-storage-redis ioredis`

### NPM

- `npm install --save nestjs-throttler nestjs-throttler-storage-redis ioredis`
- `npm install --save nestjs-throttler-storage-redis ioredis`

# Usage

```ts
import { ThrottlerModule } from 'nestjs-throttler';
import { ThrottlerStorageRedisService } from 'nestjs-throttler-storage-redis';
import { ThrottlerModule } from '';
import { ThrottlerStorageRedisService } from '-storage-redis';

@Module({
imports: [
Expand All @@ -31,8 +31,8 @@ export class AppModule {}
```

```ts
import { ThrottlerModule } from 'nestjs-throttler';
import { ThrottlerStorageRedisService } from 'nestjs-throttler-storage-redis';
import { ThrottlerModule } from '';
import { ThrottlerStorageRedisService } from '-storage-redis';

@Module({
imports: [
Expand All @@ -55,9 +55,6 @@ export class AppModule {}
Bugs and features related to the redis implementation are welcome in this
repository.

For any issues related to the nestjs-throttler, please submit an issue at the
[nestjs-throttler](https://github.com/jmcdo29/nestjs-throttler) repository.

# License

NestJS Throttler Redis Storage is licensed under the MIT license.
Loading

0 comments on commit 98de6ee

Please sign in to comment.