logwell 0.1.3 → 0.1.4
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,8 @@ Official TypeScript SDK for [Logwell](https://github.com/divkix/logwell) - a sel
|
|
|
24
24
|
|
|
25
25
|
## Installation
|
|
26
26
|
|
|
27
|
+
### npm / bun / pnpm
|
|
28
|
+
|
|
27
29
|
```bash
|
|
28
30
|
npm install logwell
|
|
29
31
|
# or
|
|
@@ -32,6 +34,16 @@ bun add logwell
|
|
|
32
34
|
pnpm add logwell
|
|
33
35
|
```
|
|
34
36
|
|
|
37
|
+
### JSR (Deno)
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
deno add jsr:@divkix/logwell
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
```typescript
|
|
44
|
+
import { Logwell } from '@divkix/logwell';
|
|
45
|
+
```
|
|
46
|
+
|
|
35
47
|
## Quick Start
|
|
36
48
|
|
|
37
49
|
```typescript
|