@trevrpc/trevrpc-js-native-linux-x64-gnu 0.1.0
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/LICENSE +21 -0
- package/README.md +11 -0
- package/THIRD_PARTY_NOTICES.md +27 -0
- package/libmsquic.so.2 +0 -0
- package/package.json +39 -0
- package/trevrpc_native.node +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 trev
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @trevrpc/trevrpc-js-native-linux-x64-gnu
|
|
2
|
+
|
|
3
|
+
Target-specific native addon used by `@trevrpc/trevrpc-js@0.1.0`.
|
|
4
|
+
|
|
5
|
+
Supported runtime contract:
|
|
6
|
+
|
|
7
|
+
- Linux x86-64
|
|
8
|
+
- glibc 2.42 or newer
|
|
9
|
+
- Node.js 24
|
|
10
|
+
|
|
11
|
+
Install `@trevrpc/trevrpc-js`; its exact optional dependency selects this package automatically. Do not import this package directly. The package contains one N-API `.node` addon and its `$ORIGIN`-resolved `libmsquic.so.2` dependency.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# License and third-party notices
|
|
2
|
+
|
|
3
|
+
## TrevRPC
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2026 trev
|
|
6
|
+
|
|
7
|
+
TrevRPC is licensed under the MIT License:
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14
|
+
|
|
15
|
+
## MsQuic
|
|
16
|
+
|
|
17
|
+
This package bundles `libmsquic.so.2` from the Microsoft MsQuic project: https://github.com/microsoft/msquic
|
|
18
|
+
|
|
19
|
+
Copyright (c) Microsoft Corporation.
|
|
20
|
+
|
|
21
|
+
MsQuic is licensed under the MIT License:
|
|
22
|
+
|
|
23
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24
|
+
|
|
25
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/libmsquic.so.2
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@trevrpc/trevrpc-js-native-linux-x64-gnu",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "TrevRPC native Node addon for Linux x86-64 glibc",
|
|
5
|
+
"homepage": "https://trev.zip/llc/TrevRPC",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://trev.zip/llc/TrevRPC/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://trev.zip/llc/TrevRPC.git",
|
|
13
|
+
"directory": "/trevrpc-js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"trevrpc_native.node",
|
|
17
|
+
"libmsquic.so.2",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"THIRD_PARTY_NOTICES.md"
|
|
21
|
+
],
|
|
22
|
+
"os": [
|
|
23
|
+
"linux"
|
|
24
|
+
],
|
|
25
|
+
"cpu": [
|
|
26
|
+
"x64"
|
|
27
|
+
],
|
|
28
|
+
"libc": [
|
|
29
|
+
"glibc"
|
|
30
|
+
],
|
|
31
|
+
"main": "trevrpc_native.node",
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public",
|
|
34
|
+
"provenance": true
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=24 <25"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
Binary file
|