@avalw/search-worker 2.2.0 → 2.3.0

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 (3) hide show
  1. package/README.md +25 -2
  2. package/bin/cli.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -81,11 +81,34 @@ npm install -g @avalw/search-worker
81
81
  npx @avalw/search-worker --token YOUR_TOKEN
82
82
  ```
83
83
 
84
- ## What's New in v2.1.0
84
+ ## What's New in v2.3.0
85
85
 
86
86
  ```
87
87
  ┌────────────────────────────────────────────────────────────────┐
88
- INTELLIGENT CACHE SYSTEM
88
+ 🚀 LIVE INTEGRATION WITH AVALW.ORG & CRONOS BROWSER
89
+ ├────────────────────────────────────────────────────────────────┤
90
+ │ │
91
+ │ Your worker now directly powers avalw.org search! │
92
+ │ │
93
+ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
94
+ │ │ Real-Time │ │ Instant │ │ Global │ │
95
+ │ │ Integration │ │ Cache │ │ Impact │ │
96
+ │ └─────────────┘ └─────────────┘ └─────────────┘ │
97
+ │ │
98
+ │ • Every search on avalw.org checks your worker first │
99
+ │ • Cache hits served in 1-2ms (vs 50-100ms from database) │
100
+ │ • Your cached results help millions of users │
101
+ │ • Cronos Browser users benefit from your contribution │
102
+ │ • See real-time stats on worker.avalw.org │
103
+ │ │
104
+ └────────────────────────────────────────────────────────────────┘
105
+ ```
106
+
107
+ ## Intelligent Cache System
108
+
109
+ ```
110
+ ┌────────────────────────────────────────────────────────────────┐
111
+ │ SMART CACHING FEATURES │
89
112
  ├────────────────────────────────────────────────────────────────┤
90
113
  │ │
91
114
  │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
package/bin/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  /**
4
4
  * AVALW Search Worker CLI v2.1.0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@avalw/search-worker",
3
- "version": "2.2.0",
4
- "description": "AVALW Distributed Cache Worker - Privacy-focused intelligent caching",
3
+ "version": "2.3.0",
4
+ "description": "AVALW Distributed Cache Worker - Powers avalw.org & Cronos Browser search",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "avalw-worker": "./bin/cli.js"