@neelegirly/baileys 2.2.23 โ†’ 2.2.24

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 +54 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,3 +1,57 @@
1
+ <pre align="center">
2
+ ๐Ÿ’– Neelegirly Ecosystem Clean Stability Update ๐Ÿ’–
3
+ 4 Packages ยท 1 App ยท PM2 only runs the app
4
+ </pre>
5
+
6
+ # ๐ŸŒธ @neelegirly/baileys
7
+
8
+ WhatsApp Web API core connection layer.
9
+
10
+ ## Clean Architecture
11
+
12
+ ```text
13
+ @neelegirly/libsignal
14
+ โ†“
15
+ @neelegirly/baileys
16
+ โ†“
17
+ @neelegirly/wa-api
18
+ โ†“
19
+ App (PM2 managed)
20
+ โ†“
21
+ @neelegirly/downloader (optional utility)
22
+ ```
23
+
24
+ ## Official Package Role
25
+
26
+ - Depends on @neelegirly/libsignal
27
+ - Core connection layer
28
+ - Used by @neelegirly/wa-api
29
+
30
+ ## PM2 Rule
31
+
32
+ > WA-API handles sessions internally. PM2 only runs the app.
33
+
34
+ Start your app with PM2 like this:
35
+
36
+ ```bash
37
+ pm2 start index.js --name bot
38
+ ```
39
+
40
+ Do not start one PM2 process per session. Sessions belong inside the app through `@neelegirly/wa-api`.
41
+
42
+ ## Install
43
+
44
+ ```bash
45
+ npm install @neelegirly/baileys
46
+ ```
47
+
48
+ ## Clean Stability Release
49
+
50
+ This release clarifies the ecosystem structure and removes workspace/core confusion from the documentation.
51
+
52
+
53
+ ---
54
+
1
55
  <div align="center">
2
56
 
3
57
  # ๐ŸŒธ @neelegirly/baileys ๐ŸŒธ
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neelegirly/baileys",
3
- "version": "2.2.23",
3
+ "version": "2.2.24",
4
4
  "description": "Neelegirly fork of Baileys: multi-device WhatsApp Web API for Node.js",
5
5
  "keywords": [
6
6
  "whatsapp",
@@ -44,7 +44,7 @@
44
44
  "@adiwajshing/keyed-db": "^0.2.4",
45
45
  "@cacheable/node-cache": "^1.5.4",
46
46
  "@hapi/boom": "^9.1.3",
47
- "@neelegirly/libsignal": "1.0.31",
47
+ "@neelegirly/libsignal": "1.0.32",
48
48
  "async-mutex": "^0.5.0",
49
49
  "audio-decode": "^2.1.3",
50
50
  "axios": "^1.3.3",
@@ -59,7 +59,7 @@
59
59
  "ws": "^8.13.0"
60
60
  },
61
61
  "overrides": {
62
- "@neelegirly/libsignal": "1.0.31"
62
+ "@neelegirly/libsignal": "1.0.32"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@adiwajshing/eslint-config": "github:adiwajshing/eslint-config",