console-xray 0.0.1 → 0.0.2
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 +24 -0
- package/package.json +4 -2
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# console-xray 🔍
|
|
2
|
+
|
|
3
|
+
A smart and beginner-friendly console debugger that helps developers understand
|
|
4
|
+
**what is changing**, **where it was logged from**, and **when it happened**.
|
|
5
|
+
|
|
6
|
+
Instead of messy `console.log()`, get structured, meaningful logs.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ✨ Features
|
|
11
|
+
|
|
12
|
+
- 📦 Detects value **type**
|
|
13
|
+
- 🧬 Tracks **object changes** between logs
|
|
14
|
+
- 📍 Shows **file name & line number**
|
|
15
|
+
- ⏰ Adds **timestamp**
|
|
16
|
+
- 🎨 Clean, readable console output
|
|
17
|
+
- ⚡ Lightweight & framework-agnostic
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 📦 Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install console-xray
|
package/package.json
CHANGED