
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
nestjs-resilience
Advanced tools
A module for improving the reliability and fault-tolerance of your NestJS applications
A module for improving the reliability and fault-tolerance of your NestJS applications
NestJS Resilience is an open-source library that provides a set of reliable patterns for building resilient applications on top of NestJS. The library includes several key features, including retry, circuit breaker, and timeout patterns, which help to ensure that your application can handle failures and recover quickly from them.
With NestJS Resilience, you can easily configure these patterns for your application, allowing you to improve the reliability and fault-tolerance of your services. Whether you're building a high-traffic web application or a distributed system, NestJS Resilience provides the tools you need to build robust, failure-resistant services that can withstand even the most challenging environments.
Features
$ npm install nestjs-resilience
$ yarn add nestjs-resilience
$ pnpm add nestjs-resilience
import { Module } from '@nestjs/common';
import { ResilienceModule } from 'nestjs-resilience';
@Module({
imports: [ResilienceModule.forRoot()]
})
export class AppModule {}
Use store
field to configure cache (e.x. store: new RedisStore({ host: 'localhost', port: 6379 })
).
We use memory
from cache-manager
store by default.
You can use it in three ways:
ResilienceCommand
You can create a command by extending the ResilienceCommand
class. You can also use the ResilienceFactory
to create a command with a set
of policies.
import { Injectable } from '@nestjs/common';
import { ResilienceCommand, ResilienceFactory } from 'nestjs-resilience';
import { UsersService } from './user.service';
import { User, NullUserObject } from './user.entity';
@Injectable()
export class GetUserByIdCommand extends ResilienceCommand {
constructor(
private readonly factory: ResilienceFactory,
private readonly userService: UsersService
) {
super([
// You can use the injected factory to create a strategy
factory.createTimeout(1000),
// Or you can create a strategy directly
ResilienceFactory.createFallback((id) => new NullUserObject(id))
// You can also use mannually created strategies
// new TimeoutStrategy(1000),
]);
}
async run(id: number): User {
return this.usersService.getUser(id);
}
}
This way supports DI, just what you need add @Injectable()
decorator to your command and to providers of your module. Inject your
command in the constructor or use resilienceService.getCommand(GetUserByIdCommand)
.
FAQ:
@Inject()
decorator? Yes, you can. But you need to add @Injectable()
decorator to your command.new
operator.@UseResilience()
decoratorYou can use @UseResilience()
decorator to wrap your service methods.
import { Injectable } from '@nestjs/common';
import { TimeoutStrategy } from "./timeout.strategy";
import { NullUserObject, User } from './user.entity';
@Injectable()
export class UsersService {
@UseResilience(new TimeoutStrategy(1000), ResilienceFactory.createFallback((id) => new NullUserObject(id)))
async getUser(id: number): User {
return this.httpService.get(`https://example.com/users/${id}`).toPromise();
}
}
Not the best way to use in controller methods.
@UseResilience
rewrite your method.
You also can wrap your controller methods with ResilienceInterceptor
and use all the features of the library.
import { Controller, Get, UseInterceptors } from '@nestjs/common';
import { ResilienceInterceptor } from 'nestjs-resilience';
import { UsersService } from './users.service';
@Controller('users')
export class UsersController {
constructor(private readonly usersService: UsersService) {
}
@Get()
@UseInterceptors(ResilienceInterceptor(new TimeoutStrategy(1000), ResilienceFactory.createFallback(() => [])))
async getUsers(): User[] {
return this.usersService.getUsers();
}
}
We also support Observable
as a return type. You can use it with @UseResilienceObservable()
decorator or ResilienceCommandObservable
.
import { Injectable } from '@nestjs/common';
import { TimeoutStrategy } from "./timeout.strategy";
import { NullUserObject, User } from './user.entity';
import { Observable, of } from 'rxjs';
@Injectable()
export class UsersService {
@UseResilienceObservable(new TimeoutStrategy(1000), ResilienceFactory.createFallback((id) => new NullUserObject(id)))
getUser(id: number): Observable<User> {
return of(new User(id, 'John Doe'));
}
}
Strategies processing in order which you pass them to the ResilienceCommand
or ResilienceInterceptor
.
What it means? Let's take a look at the example:
Timeout before Retry:
Retry after Timeout:
Strategy | Description |
---|---|
TimeoutStrategy | Automatically fail fast when a service is taking too long to respond |
RetryStrategy | Automatically retry failed requests |
CircuitBreakerStrategy | Automatically fail fast when a service is unavailable |
BulkheadStrategy | Limit the number of concurrent requests to a service |
FallbackStrategy | Provide a fallback response when a service is unavailable |
ThrottleStrategy | Limit the number of requests to a service |
HealthCheckStrategy | Check the health of a service |
CacheStrategy | Cache the result of a service call |
DeduplicateStrategy | Prevent duplicate requests from being processed |
FAQs
A module for improving the reliability and fault-tolerance of your NestJS applications
The npm package nestjs-resilience receives a total of 2,452 weekly downloads. As such, nestjs-resilience popularity was classified as popular.
We found that nestjs-resilience demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.