ucode-lsp 0.6.16 → 0.6.17
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 +11 -6
- package/dist/cli.js +43167 -1
- package/dist/server.js +47253 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -120,16 +120,21 @@ let content = fs.readfile("data.txt"); // ✅ All 27 fs module functions avai
|
|
|
120
120
|
```
|
|
121
121
|
|
|
122
122
|
**Supported Modules:**
|
|
123
|
-
- **socket** - Network socket functionality (create, connect, listen, etc.)
|
|
124
|
-
- **math** - Mathematical functions (sin, cos, sqrt, etc.)
|
|
125
|
-
- **log** - System logging (syslog, ulog functions)
|
|
126
|
-
- **resolv** - DNS resolution (query, error functions)
|
|
127
|
-
- **nl80211** - WiFi/802.11 networking
|
|
128
123
|
- **debug** - Runtime debugging and introspection
|
|
129
124
|
- **digest** - Cryptographic hash functions
|
|
130
|
-
- **fs** - File system operations
|
|
125
|
+
- **fs** - File system operations (open, readfile, writefile, stat, access, etc.)
|
|
126
|
+
- **io** - I/O handle operations
|
|
127
|
+
- **log** - System logging (syslog, ulog functions)
|
|
128
|
+
- **math** - Mathematical functions (sin, cos, sqrt, etc.)
|
|
129
|
+
- **nl80211** - WiFi/802.11 networking
|
|
130
|
+
- **resolv** - DNS resolution (query, error functions)
|
|
131
|
+
- **rtnl** - Netlink routing (routes, links, addresses)
|
|
132
|
+
- **socket** - Network socket functionality (create, connect, listen, etc.)
|
|
133
|
+
- **struct** - Binary data packing/unpacking
|
|
134
|
+
- **ubus** - OpenWrt inter-process communication
|
|
131
135
|
- **uci** - OpenWrt UCI configuration management
|
|
132
136
|
- **uloop** - Event loop and timer functionality
|
|
137
|
+
- **zlib** - Compression/decompression
|
|
133
138
|
|
|
134
139
|
### Code Navigation
|
|
135
140
|
```ucode
|