logwell 0.1.3 → 0.1.5
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
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<a href="https://www.npmjs.com/package/logwell"><img src="https://img.shields.io/npm/v/logwell.svg" alt="npm version" /></a>
|
|
7
|
+
<a href="https://jsr.io/@divkix/logwell"><img src="https://jsr.io/badges/@divkix/logwell" alt="JSR" /></a>
|
|
7
8
|
<a href="https://www.npmjs.com/package/logwell"><img src="https://img.shields.io/npm/dm/logwell.svg" alt="npm downloads" /></a>
|
|
8
9
|
<a href="https://github.com/Divkix/Logwell/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/logwell.svg" alt="license" /></a>
|
|
9
10
|
</p>
|
|
@@ -24,6 +25,8 @@ Official TypeScript SDK for [Logwell](https://github.com/divkix/logwell) - a sel
|
|
|
24
25
|
|
|
25
26
|
## Installation
|
|
26
27
|
|
|
28
|
+
### npm / bun / pnpm
|
|
29
|
+
|
|
27
30
|
```bash
|
|
28
31
|
npm install logwell
|
|
29
32
|
# or
|
|
@@ -32,6 +35,16 @@ bun add logwell
|
|
|
32
35
|
pnpm add logwell
|
|
33
36
|
```
|
|
34
37
|
|
|
38
|
+
### JSR (Deno)
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
deno add jsr:@divkix/logwell
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
```typescript
|
|
45
|
+
import { Logwell } from '@divkix/logwell';
|
|
46
|
+
```
|
|
47
|
+
|
|
35
48
|
## Quick Start
|
|
36
49
|
|
|
37
50
|
```typescript
|