@avalw/search-worker 1.0.1 → 1.0.3
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 +9 -7
- package/package.json +1 -8
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Free privacy-focused search API in exchange for compute power.
|
|
|
7
7
|
|
|
8
8
|
## What is AVALW Worker?
|
|
9
9
|
|
|
10
|
-
AVALW Worker is a lightweight Node.js application that runs on your server and contributes
|
|
10
|
+
AVALW Worker is a lightweight Node.js application that runs on your server and contributes CPU power to the AVALW distributed network. In return, you get **free access** to the AVALW Search API - a privacy-focused search engine that doesn't track users. Your API quota scales with your contribution.
|
|
11
11
|
|
|
12
12
|
**No tracking. No ads. No data collection. Just search.**
|
|
13
13
|
|
|
@@ -52,11 +52,7 @@ Visit [worker.avalw.org](https://worker.avalw.org) and create a free account. Yo
|
|
|
52
52
|
### 2. Install the Worker
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
|
-
# Install globally via npm
|
|
56
55
|
npm install -g @avalw/search-worker
|
|
57
|
-
|
|
58
|
-
# Or install from GitHub
|
|
59
|
-
npm install -g github:avalw/search-worker
|
|
60
56
|
```
|
|
61
57
|
|
|
62
58
|
### 3. Run the Worker
|
|
@@ -247,7 +243,6 @@ For security, API requests only work from whitelisted domains. Manage your domai
|
|
|
247
243
|
## Support
|
|
248
244
|
|
|
249
245
|
- Website: [worker.avalw.org](https://worker.avalw.org)
|
|
250
|
-
- Issues: [GitHub Issues](https://github.com/avalw/search-worker/issues)
|
|
251
246
|
- Email: contact@avalw.com
|
|
252
247
|
|
|
253
248
|
## License
|
|
@@ -276,4 +271,11 @@ SOFTWARE.
|
|
|
276
271
|
|
|
277
272
|
---
|
|
278
273
|
|
|
279
|
-
Made with privacy in mind by [AVALW](https://avalw.
|
|
274
|
+
Made with privacy in mind by [AVALW](https://cronos.avalw.com/about)
|
|
275
|
+
|
|
276
|
+
### Our Projects
|
|
277
|
+
|
|
278
|
+
- [AVALW Search](https://avalw.org) - Privacy-focused search engine
|
|
279
|
+
- [Cronos Browser](https://cronos.avalw.com) - Secure, private browser
|
|
280
|
+
- [AVALW Protocol](https://avalw.com) - Decentralized communication protocol
|
|
281
|
+
- [Worker API](https://worker.avalw.org) - This project
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalw/search-worker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "AVALW Search Worker - Contribute compute power, get free privacy-focused search API access",
|
|
5
5
|
"main": "lib/worker.js",
|
|
6
6
|
"bin": {
|
|
@@ -22,13 +22,6 @@
|
|
|
22
22
|
],
|
|
23
23
|
"author": "AVALW <contact@avalw.com>",
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/avalw/search-worker.git"
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/avalw/search-worker/issues"
|
|
31
|
-
},
|
|
32
25
|
"homepage": "https://worker.avalw.org",
|
|
33
26
|
"engines": {
|
|
34
27
|
"node": ">=14.0.0"
|