npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@tresdoce-nestjs-toolkit/http-client

v1.1.1

Published

Tresdoce NestJS Toolkit - Módulo http request con axios y axios-retry

Downloads

179

Readme

Este módulo está pensada para ser utilizada en NestJS Starter, o cualquier proyecto que utilice una configuración centralizada, siguiendo la misma arquitectura del starter.

Glosario


📝 Requerimientos básicos

🛠️ Instalar dependencia

npm install -S @tresdoce-nestjs-toolkit/http-client
yarn add @tresdoce-nestjs-toolkit/http-client

⚙️ Configuración

El objeto httpClient es opcional a la configuración, la cual admite el objeto de configuración para Axios y Axios-retry por medio de la propiedad httpOptions, y también es posible propagar headers a las peticiones por medio de la propiedad propagateHeaders que es un array de string.

//./src/config/configuration.ts
import { Typings } from '@tresdoce-nestjs-toolkit/paas';
import { registerAs } from '@nestjs/config';

export default registerAs('config', (): Typings.AppConfig => {
  return {
    //...
    httpClient: {
      httpOptions: {
        timeout: 5000,
        retries: 5,
      },
      propagateHeaders: process.env.PROPAGATE_HEADERS_HTTP
        ? process.env.PROPAGATE_HEADERS_HTTP.split(',')
        : [],
    },
    //...
  };
});

Importar HttpClientModule en el módulo que requiera utilizarlo, o bien se puede utilizarla de manera global en el app.module.ts.

En cuanto al HttpClientInterceptor es importante instanciarlo para poder propagar los headers de la traza y cualquier otro header que se configure.

import { APP_INTERCEPTOR } from '@nestjs/core';
import { HttpClientModule, HttpClientInterceptor } from '@tresdoce-nestjs-toolkit/http-client';

@Module({
  imports: [
    //...
    HttpClientModule,
    //...
  ],
  providers: [
    //...
    {
      provide: APP_INTERCEPTOR,
      useClass: HttpClientInterceptor,
    },
    //...
  ],
  //...
})
export class AppModule {}

⚠️ En caso de que la propagación de headers no se realice correctamente, verificar el orden de los APP_INTERCEPTOR

Este módulo utiliza Axios y Axios-retry, por lo que puedes pasarle cualquier configuración de AxiosRequestConfig y/o AxiosRetryConfig por medio del método .register() como si fuera el httpModule original de NestJs, además de utilizar la configuración centralizada.

import { APP_INTERCEPTOR } from '@nestjs/core';
import { HttpClientModule, HttpClientInterceptor } from '@tresdoce-nestjs-toolkit/http-client';

@Module({
  imports: [
    //...
    HttpClientModule.register({
      timeout: 1000,
      retries: 5,
      //...
    }),
    //...
  ],
  providers: [
    //...
    {
      provide: APP_INTERCEPTOR,
      useClass: HttpClientInterceptor,
    },
    //...
  ],
  //...
})
export class AppModule {}

Configuración async

Cuando necesite pasar las opciones del módulo de forma asincrónica en lugar de estática, utilice el método .registerAsync() como si fuera el httpModule original de NestJS.

Hay varias formas para hacer esto.

  • useFactory

Desde la configuración centralizada, debera crear un objeto de configuración para el módulo, y luego obtenerlo con la inyección del ConfigService.

HttpClientModule.registerAsync({
  imports: [ConfigModule],
  useFactory: async (configService: ConfigService) => configService.get('config.httpOptions'),
  inject: [ConfigService],
});

O también puede hacerlo asi.

HttpClientModule.registerAsync({
  useFactory: () => ({
    timeout: 1000,
    retries: 5,
    //...
  }),
});
  • useClass
HttpClientModule.registerAsync({
  useClass: HttpConfigService,
});

Tenga en cuenta que en este ejemplo, el HttpConfigService tiene que implementar la interfaz HttpModuleOptionsFactory como se muestra a continuación.

@Injectable()
class HttpConfigService implements HttpModuleOptionsFactory {
  async createHttpOptions(): Promise<HttpModuleOptions> {
    const configurationData = await someAsyncMethod();
    return {
      timeout: configurationData.timeout,
      retries: 5,
      //...
    };
  }
}
  • useExisting

Si desea reutilizar un proveedor de opciones existente en lugar de crear una copia dentro del HttpClientModule, utilice la sintaxis useExisting.

HttpClientModule.registerAsync({
  imports: [ConfigModule],
  useExisting: ConfigService,
});

👨‍💻 Uso

Inyectar el HttpClientService en el constructor de la clase y realice el request utilizando el servicio instanciando en el constructor.

//./src/app.service.ts
import { HttpClientService } from '@tresdoce-nestjs-toolkit/http-client';

export class AppService {
  constructor(private readonly httpClient: HttpClientService) {}
  //...

  async getInfoFromApi() {
    try {
      const { status, data } = await this.httpClient.get(encodeURI('https://api.domain.com'));
      return data;
    } catch (error) {
      throw new HttpException(error.response.data, error.response.status);
    }
  }

  //...
}

📄 Changelog

Todos los cambios notables de este paquete se documentarán en el archivo Changelog.