
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
@catalist-nestjs/fetch
Advanced tools
NestJS Fetch for Catalist Finance projects. Part of [Catalist NestJS Modules](https://github.com/blockarchivelabs/catalist-nestjs-modules/#readme)
NestJS Fetch for Catalist Finance projects. Part of Catalist NestJS Modules
The module is based on the node-fetch package.
yarn add @catalist-nestjs/fetch
// Import
import { Module } from '@nestjs/common';
import { FetchModule } from '@catalist-nestjs/fetch';
import { MyService } from './my.service';
@Module({
imports: [FetchModule.forFeature()],
providers: [MyService],
exports: [MyService],
})
export class MyModule {}
// Usage
import { FetchService } from '@catalist-nestjs/fetch';
export class MyService {
constructor(private fetchService: FetchService) {}
async myFetch() {
return await this.fetchService.fetchJson('/url');
}
}
The fetchService
provides 2 methods: fetchJson
and fetchText
, which are based on a call to the fetch
function followed by a call to .json()
or .text()
. Method arguments are compatible with the fetch
.
import { Module } from '@nestjs/common';
import { FetchModule } from '@catalist-nestjs/fetch';
@Module({
imports: [FetchModule.forRoot()],
})
export class MyModule {}
import { Module } from '@nestjs/common';
import { FetchModule } from '@catalist-nestjs/fetch';
import { ConfigModule, ConfigService } from './my.service';
@Module({
imports: [
ConfigModule,
FetchModule.forRootAsync({
async useFactory(configService: ConfigService) {
return { baseUrls: configService.baseUrls };
},
inject: [ConfigService],
}),
],
})
export class MyModule {}
The forRoot
and forFeature
methods have the same options:
export interface FetchModuleOptions {
baseUrls?: string[];
retryPolicy?: RequestRetryPolicy;
}
export interface RequestRetryPolicy {
delay?: number;
attempts?: number;
}
Option | Default | Desc |
---|---|---|
baseUrls | [] | Array of base API URLs |
delay | 1000 | Number of milliseconds between attempts |
attempts | 0 | Number of times the query is retried |
// Import
import { Module } from '@nestjs/common';
import { FetchModule } from '@catalist-nestjs/fetch';
import { MyService } from './my.service';
@Module({
imports: [
FetchModule.forFeature({
baseUrls: ['https://my-api.com', 'https://my-fallback-api.com'],
retryPolicy: {
delay: 2000,
attempts: 3,
},
}),
],
providers: [MyService],
exports: [MyService],
})
export class MyModule {}
// Usage
import { FetchService } from '@catalist-nestjs/fetch';
export class MyService {
constructor(private fetchService: FetchService) {}
async myFetch() {
return await this.fetchService.fetchJson('/foo');
}
}
If the provided API services are unavailable, the following happens:
The retryPolicy
for each query can be rewritten:
import { FetchService } from '@catalist-nestjs/fetch';
export class MyService {
constructor(private fetchService: FetchService) {}
async myFetch() {
return await this.fetchService.fetchJson('/foo', {
retryPolicy: {
delay: 2000,
attempts: 3,
},
});
}
}
FAQs
NestJS Fetch for Catalist Finance projects. Part of [Catalist NestJS Modules](https://github.com/blockarchivelabs/catalist-nestjs-modules/#readme)
The npm package @catalist-nestjs/fetch receives a total of 46 weekly downloads. As such, @catalist-nestjs/fetch popularity was classified as not popular.
We found that @catalist-nestjs/fetch 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.