@utsp/network-server 0.1.2 → 0.1.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 +36 -36
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
# @utsp/network-server
|
|
2
|
-
|
|
3
|
-
> ⚠️ **PROTOTYPE - NOT READY FOR PRODUCTION**
|
|
4
|
-
>
|
|
5
|
-
> This package is currently in early development and should **NOT** be used in production.
|
|
6
|
-
> The API is unstable and subject to breaking changes without notice.
|
|
7
|
-
|
|
8
|
-
Server-side network communication layer for UTSP (Universal Text Stream Protocol).
|
|
9
|
-
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
11
|
-
|
|
12
|
-
## ⚠️ Development Status
|
|
13
|
-
|
|
14
|
-
**This is a prototype package under active development.**
|
|
15
|
-
|
|
16
|
-
- ❌ No stable API
|
|
17
|
-
- ❌ No documentation available yet
|
|
18
|
-
- ❌ Breaking changes expected
|
|
19
|
-
- ❌ Not recommended for production use
|
|
20
|
-
|
|
21
|
-
**Please check back later for updates or watch the repository for release announcements.**
|
|
22
|
-
|
|
23
|
-
## Installation
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
npm install @utsp/network-server
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Repository
|
|
30
|
-
|
|
31
|
-
- [GitHub](https://github.com/thp-software/utsp)
|
|
32
|
-
- [Issues](https://github.com/thp-software/utsp/issues)
|
|
33
|
-
|
|
34
|
-
## License
|
|
35
|
-
|
|
36
|
-
MIT © 2025
|
|
1
|
+
# @utsp/network-server
|
|
2
|
+
|
|
3
|
+
> ⚠️ **PROTOTYPE - NOT READY FOR PRODUCTION**
|
|
4
|
+
>
|
|
5
|
+
> This package is currently in early development and should **NOT** be used in production.
|
|
6
|
+
> The API is unstable and subject to breaking changes without notice.
|
|
7
|
+
|
|
8
|
+
Server-side network communication layer for UTSP (Universal Text Stream Protocol).
|
|
9
|
+
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
|
|
12
|
+
## ⚠️ Development Status
|
|
13
|
+
|
|
14
|
+
**This is a prototype package under active development.**
|
|
15
|
+
|
|
16
|
+
- ❌ No stable API
|
|
17
|
+
- ❌ No documentation available yet
|
|
18
|
+
- ❌ Breaking changes expected
|
|
19
|
+
- ❌ Not recommended for production use
|
|
20
|
+
|
|
21
|
+
**Please check back later for updates or watch the repository for release announcements.**
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install @utsp/network-server
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Repository
|
|
30
|
+
|
|
31
|
+
- [GitHub](https://github.com/thp-software/utsp)
|
|
32
|
+
- [Issues](https://github.com/thp-software/utsp/issues)
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT © 2025 THP Software
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utsp/network-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "UTSP Network Server - Server-side communication adapters",
|
|
5
|
-
"author": "
|
|
5
|
+
"author": "THP Software",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./dist/index.cjs",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"socket.io": "^4.7.2",
|
|
53
|
-
"@utsp/types": "0.1.
|
|
53
|
+
"@utsp/types": "0.1.3"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^20.0.0",
|