@koderlabs/tasks-sdk-nestjs 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
Production-grade observability for NestJS apps: errors, request context,
|
|
6
6
|
breadcrumbs, spans, HTTP tracing, console capture, TypeORM tracing.
|
|
7
7
|
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @koderlabs/tasks-sdk-nestjs
|
|
12
|
+
# or
|
|
13
|
+
pnpm add @koderlabs/tasks-sdk-nestjs
|
|
14
|
+
# or
|
|
15
|
+
yarn add @koderlabs/tasks-sdk-nestjs
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Peer dependencies: `@nestjs/common`, `@nestjs/core`. `typeorm` is an optional
|
|
19
|
+
peer required only when `captureTypeOrm: true`.
|
|
20
|
+
|
|
8
21
|
## Quick start
|
|
9
22
|
|
|
10
23
|
```ts
|
package/package.json
CHANGED