0.0.1-rc.4 • Published 1 year ago

@nestutils/config-client v0.0.1-rc.4

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

Description

This NestJS Module can be used to connect with remote-config-server to fetch environment specific configurations.

Installation

In your existing NestJS-based project:

$ npm install --save @nestutils/config-client

Usage

import { Module } from '@nestjs/common'
import { ClientConfigModule } from '@nestutils/config-client'
@Module({
    imports: [
      ClientConfigModule.forRootAsync({
        serverUrl: 'http://************.***:****',
        applicationId: **************************
    }),
      ]
})
export class AppModule {}

Contributions

Any suggestions, issues, bug-fixes, PR's are most welcomed. Thanks.

Note

This project is currently in active development 🚧. Breaking changes are expected.