binary-packet 1.0.0 → 1.0.2
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 +7 -2
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -121,5 +121,10 @@ You can see and run the benchmarks yourself if you clone the repository and laun
|
|
|
121
121
|
|
|
122
122
|
## Disclaimer
|
|
123
123
|
|
|
124
|
-
This library is still very new, thus not "battle-tested" in production enough
|
|
125
|
-
If you plan on serializing highly sensitive data or need to guarantee no crashes, use an alternative like [msgpackr](https://www.npmjs.com/package/msgpackr)
|
|
124
|
+
This library is still very new, thus not "battle-tested" in production enough, or may still have missing important features. \
|
|
125
|
+
If you plan on serializing highly sensitive data or need to guarantee no crashes, use an alternative like [msgpackr](https://www.npmjs.com/package/msgpackr) until this library becomes 100% production-ready.
|
|
126
|
+
|
|
127
|
+
## Contribute
|
|
128
|
+
|
|
129
|
+
Would like to have more complex, but still hyper-fast and memory efficient, features? \
|
|
130
|
+
[Contribute on GitHub](https://github.com/silence-cloud-com/binary-packet) yourself or, alternatively, [buy me a coffee](https://buymeacoffee.com/silence.cloud)!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "binary-packet",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Lightweight and hyper-fast, zero-dependencies, TypeScript-first, schema-based binary packets serialization and deserialization library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
"benchmark": "node -r ts-node/register/transpile-only src/tests/benchmark.test.ts"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
|
+
"binary-packet",
|
|
18
|
+
"binary packet",
|
|
17
19
|
"silence-cloud",
|
|
18
20
|
"binary",
|
|
19
21
|
"bytes",
|
|
@@ -23,10 +25,14 @@
|
|
|
23
25
|
"deserialize",
|
|
24
26
|
"encode",
|
|
25
27
|
"decode",
|
|
28
|
+
"packer",
|
|
29
|
+
"unpacker",
|
|
26
30
|
"packet",
|
|
27
31
|
"message",
|
|
32
|
+
"data",
|
|
28
33
|
"fast",
|
|
29
34
|
"lightweight",
|
|
35
|
+
"efficient",
|
|
30
36
|
"buffer",
|
|
31
37
|
"arraybuffer",
|
|
32
38
|
"dataview"
|
|
@@ -48,6 +54,6 @@
|
|
|
48
54
|
"typescript": "^5.6.2"
|
|
49
55
|
},
|
|
50
56
|
"engines": {
|
|
51
|
-
"node": ">=
|
|
57
|
+
"node": ">=16"
|
|
52
58
|
}
|
|
53
59
|
}
|