Skip to content

Commit 6b92a2d

Browse files
committed
feat(env): Environment variables are now being cached, improving performance
1 parent 47e54bc commit 6b92a2d

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

packages/nest-utils/src/env/env.module-mixin.test.ts

+14
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,20 @@ describe('registration', () => {
1818
expect(module).toBeDefined();
1919
expect(EnvModule.get('SOME_STRING')).toBe('foo');
2020
});
21+
22+
it('should cache environment variables until load() is called again', async () => {
23+
vi.stubEnv('SOME_STRING', 'foo');
24+
const container = await TestContainer.create({
25+
imports: [EnvModule],
26+
});
27+
const module = container.module.get<EnvModule>(EnvModule);
28+
expect(module).toBeDefined();
29+
expect(EnvModule.get('SOME_STRING')).toBe('foo');
30+
vi.stubEnv('SOME_STRING', 'bar');
31+
expect(EnvModule.get('SOME_STRING')).toBe('foo');
32+
EnvModule.load();
33+
expect(EnvModule.get('SOME_STRING')).toBe('bar');
34+
});
2135
});
2236

2337
describe('validation', () => {

packages/nest-utils/src/env/env.module-mixin.ts

+15-7
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,25 @@ import { config } from 'dotenv';
3434
export function EnvModuleMixin<TEnv extends object>(env: new (...args: unknown[]) => TEnv) {
3535
@Module({})
3636
class EnvModule {
37-
static get env(): TEnv {
38-
config();
39-
return plainToInstance(env, process.env, {
40-
enableImplicitConversion: true,
41-
});
42-
}
37+
static readonly env: TEnv;
4338

4439
constructor() {
40+
EnvModule.load();
4541
EnvModule.validate();
4642
}
4743

44+
/**
45+
* (Re-)loads the environment variables. This comes at a performance cost and should only be used
46+
* when necessary.
47+
*/
48+
static load(): void {
49+
config();
50+
// @ts-expect-error This is the only spot where we're allowed to write to this.env.
51+
this.env = plainToInstance(env, process.env, {
52+
enableImplicitConversion: true,
53+
});
54+
}
55+
4856
/**
4957
* Validates the currently stored instance of the environment class.
5058
*/
@@ -68,7 +76,7 @@ export function EnvModuleMixin<TEnv extends object>(env: new (...args: unknown[]
6876
* @returns The value of the environment variable.
6977
*/
7078
static get<TKey extends keyof TEnv>(key: TKey): TEnv[TKey] {
71-
return EnvModule.env[key];
79+
return this.env[key];
7280
}
7381
}
7482

0 commit comments

Comments
 (0)