An open API service indexing awesome lists of open source software.

https://github.com/vinks/nest-consul-config

A Nest framework (node.js) module for getting configurations from consul kv
https://github.com/vinks/nest-consul-config

Last synced: 20 days ago
JSON representation

A Nest framework (node.js) module for getting configurations from consul kv

Awesome Lists containing this project

README

          


Nest Logo

## Description

A component of [nestcloud](http://github.com/nest-cloud/nestcloud). NestCloud is a nest framework micro-service solution.

[中文文档](https://nestcloud.org/solutions/pei-zhi-zhong-xin)

This is a [Nest](https://github.com/nestjs/nest) module to get configurations from consul kv.

## Installation

```bash
$ npm i --save nest-consul consul nest-consul-config
```

## Quick Start

#### Import Module

```typescript
import { Module } from '@nestjs/common';
import { ConsulModule } from 'nest-consul';
import { ConsulConfigModule } from 'nest-consul-config';

const env = process.env.NODE_ENV;

@Module({
imports: [
ConsulModule.register({
host: '127.0.0.1',
port: 8500
}),
ConsulConfigModule.register({key: `config__user-service__${env}`})
],
})
export class ApplicationModule {}
```

If you use [nest-boot](https://github.com/miaowing/nest-boot) module.

```typescript
import { Module } from '@nestjs/common';
import { ConsulModule } from 'nest-consul';
import { ConsulConfigModule } from 'nest-consul-config';
import { BootModule, BOOT_ADAPTER } from 'nest-boot';

@Module({
imports: [
ConsulModule.register({adapter: BOOT_ADAPTER}),
BootModule.register(__dirname, 'bootstrap.yml'),
ConsulConfigModule.register({adapter: BOOT_ADAPTER})
],
})
export class ApplicationModule {}
```

##### Nest-boot config file

```yaml
web:
serviceId:
serviceName: user-service
consul:
host: localhost
port: 8500
config:
# available expressions: {serviceName} {serviceId} {env}
key: config__{serviceName}__{env}
retry: 5
```

#### Config Client Injection

In consul kv, the key is "config__user-service__development".

```yaml
user:
info:
name: 'test'
```

```typescript
import { Injectable } from '@nestjs/common';
import { InjectConfig, ConsulConfig } from 'nest-consul-config';

@Injectable()
export class TestService {
constructor(
@InjectConfig() private readonly config: ConsulConfig
) {}

getUserInfo() {
const userInfo = this.config.get('user.info', {name: 'judi'});
console.log(userInfo);
}
}
```

Dynamic config update:

```typescript
import { Injectable } from '@nestjs/common';
import { InjectConfig, ConsulConfig, DynamicConfig, ConfigValue, OnUpdate } from 'nest-consul-config';

@Injectable()
export class TestService extends DynamicConfig implements OnUpdate {
@ConfigValue('user.info', {name: 'judi'})
private readonly userInfo;

constructor(
@InjectConfig() private readonly config: ConsulConfig
) {
super(config);
}

onUpdate() {
// Some service need re-initial after the config updated, you can execute it here.
}

getUserInfo() {
return this.userInfo;
}
}
```

## API

### class ConsulConfigModule

#### static register\(options\): DynamicModule

Import nest consul config module.

| field | type | description |
| :--- | :--- | :--- |
| options.adapter | string | if you are using nest-boot module, please set BOOT_ADAPTER |
| options.key | string | the key of consul kv |
| options.retry | number | the max retry count when get configuration fail |

### class ConsulConfig

#### get\(path?: string, defaults?: any\): any

Get configuration from consul kv.

| field | type | description |
| :--- | :--- | :--- |
| path | string | the path of the configuration |
| defaults | any | default value if the specific configuration is not exist |

#### getKey\(\): string

Get the current key.

#### onChange\(callback: \(configs\) => void\): void

watch the configurations.

| field | type | description |
| :--- | :--- | :--- |
| callback | \(configs\) => void | callback function |

#### async set\(path: string, value: any\): void

update configuration.

| field | type | description |
| :--- | :--- | :--- |
| path | string | the path of the configuration |
| value | any | the configuration |

## Stay in touch

- Author - [Miaowing](https://github.com/miaowing)

## License

Nest is [MIT licensed](LICENSE).