Zoe

Results 36 issues of Zoe

## ๐Ÿœ Bug description Setting `bootLibrariesFirst` will cause app configs to not load at the same time as all the other configs, the registration appears to be happening too late...

bug

## ๐Ÿœ Bug description Core doesn't support ESM properly, and it's an issue that affects the larger code base. Something about the process is completely breaking tests in this code,...

bug

## ๐Ÿชค Context Want to create workflows where all logs that get emitted all have a common property added to the logs. For example: 1. incoming http request 2. provide...

enhancement

## ๐Ÿชค Context Currently the `env-file` support is provided by node itself, rather than the library. Instead, the project will always search ```bash node --env-file .env.example dist/main.js ``` There are...

enhancement

## Context Pino offers a more complete logging solution, and is intended as an upgrade path for those needing a more customizable logging system. This use case needs validation and...

documentation
enhancement

**Bug description** ![2024-07-28_10-27](https://github.com/user-attachments/assets/53192e1a-c8f6-496d-86ea-4749aff98a34)

bug

## ๐Ÿชค Context ```typescript const { logger } = await testRunner.getParams(); ``` vs ```typescript let params: TServiceParams await testRunner.run(i => params = i); const { logger } = params; ```...

enhancement

## ๐Ÿœ Bug description When using `bun run --hot src/main.ts` - making changes to the file will boot a new server but it doesn't seem to tear down the old...

bug

## ๐Ÿœ Bug description ### Version 1 ```typescript createModule .fromLibrary(LIB_EXAMPLE) .appendLibrary( CreateLibrary({ name: "test", services: { // ... } }) ) .extend() .toTest() ``` ### Version 2 ```typescript createModule .fromLibrary(LIB_EXAMPLE)...

bug
feat: tests

## ๐Ÿชค Context Want to adjust the config loader pattern to be easier to use / interact with. In practical projects, the method implemented for swapping out the config loader...

enhancement
feat: configuration