@hardwarebridge/client 1.0.1 → 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/LICENSE +21 -0
- package/README.md +29 -0
- package/package.json +6 -5
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Azlam
|
|
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
CHANGED
|
@@ -34,8 +34,10 @@ const devices = await client.enumerateDevices();
|
|
|
34
34
|
- [Examples](#examples)
|
|
35
35
|
- [TypeScript Support](#typescript-support)
|
|
36
36
|
- [Error Handling](#error-handling)
|
|
37
|
+
- [Testing](#testing)
|
|
37
38
|
- [Contributing](#contributing)
|
|
38
39
|
- [License](#license)
|
|
40
|
+
- [Support](#support)
|
|
39
41
|
|
|
40
42
|
## ✨ Features
|
|
41
43
|
|
|
@@ -515,3 +517,30 @@ npm start
|
|
|
515
517
|
node simple-test-app.js
|
|
516
518
|
node enhanced-test-app.js
|
|
517
519
|
```
|
|
520
|
+
|
|
521
|
+
## 🤝 Contributing
|
|
522
|
+
|
|
523
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
524
|
+
|
|
525
|
+
1. Fork the repository: `https://github.com/me-azlam-kp/hardwarebridge.git`
|
|
526
|
+
2. Create your feature branch: `git checkout -b feature/amazing-feature`
|
|
527
|
+
3. Commit your changes: `git commit -m 'Add amazing feature'`
|
|
528
|
+
4. Push to the branch: `git push origin feature/amazing-feature`
|
|
529
|
+
5. Open a Pull Request
|
|
530
|
+
|
|
531
|
+
## 📄 License
|
|
532
|
+
|
|
533
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
534
|
+
|
|
535
|
+
Copyright (c) 2024 Azlam
|
|
536
|
+
|
|
537
|
+
## 🆘 Support
|
|
538
|
+
|
|
539
|
+
For support and questions:
|
|
540
|
+
- **Issues**: [Create an issue](https://github.com/me-azlam-kp/hardwarebridge/issues) in the repository
|
|
541
|
+
- **Documentation**: Check the [docs folder](https://github.com/me-azlam-kp/hardwarebridge/tree/main/docs) for detailed guides
|
|
542
|
+
- **Repository**: [https://github.com/me-azlam-kp/hardwarebridge](https://github.com/me-azlam-kp/hardwarebridge)
|
|
543
|
+
|
|
544
|
+
---
|
|
545
|
+
|
|
546
|
+
**Developed by Azlam**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hardwarebridge/client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "TypeScript client library for Hardware Bridge WebSocket service",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"typescript",
|
|
39
39
|
"rxjs"
|
|
40
40
|
],
|
|
41
|
-
"author": "
|
|
41
|
+
"author": "Azlam",
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"rxjs": "^7.0.0",
|
|
@@ -69,10 +69,11 @@
|
|
|
69
69
|
},
|
|
70
70
|
"repository": {
|
|
71
71
|
"type": "git",
|
|
72
|
-
"url": "https://github.com/hardwarebridge
|
|
72
|
+
"url": "https://github.com/me-azlam-kp/hardwarebridge.git",
|
|
73
|
+
"directory": "src/BridgeClient"
|
|
73
74
|
},
|
|
74
75
|
"bugs": {
|
|
75
|
-
"url": "https://github.com/hardwarebridge/
|
|
76
|
+
"url": "https://github.com/me-azlam-kp/hardwarebridge/issues"
|
|
76
77
|
},
|
|
77
|
-
"homepage": "https://github.com/hardwarebridge
|
|
78
|
+
"homepage": "https://github.com/me-azlam-kp/hardwarebridge#readme"
|
|
78
79
|
}
|