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.
Files changed (2) hide show
  1. package/README.md +24 -0
  2. 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
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "console-xray",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "main": "dist/main.js",
5
- "files":["dist"],
5
+ "files": [
6
+ "dist"
7
+ ],
6
8
  "scripts": {
7
9
  "start": "webpack serve --mode development",
8
10
  "build": "webpack --mode production",