surflion-service 1.4.0 → 1.5.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/README.md +51 -0
- package/package.json +32 -9
- package/surflion.min.js +2 -0
- package/shareWork.js +0 -66
- package/surflion.js +0 -1863
package/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# SurfLion Service
|
|
2
|
+
|
|
3
|
+
🚀 High-performance WebRTC communication library with integrated JsSIP protocol stack, providing complete real-time communication solutions.
|
|
4
|
+
|
|
5
|
+
## ✨ Features
|
|
6
|
+
|
|
7
|
+
- 🎯 **WebRTC Communication**: Support for peer-to-peer audio and video calls
|
|
8
|
+
- 📞 **SIP Protocol**: Complete SIP protocol stack support
|
|
9
|
+
- 🔊 **Audio/Video Calls**: High-quality audio and video communication
|
|
10
|
+
- 💬 **Real-time Messaging**: Support for real-time text messaging
|
|
11
|
+
- 🛡️ **Secure Connection**: Built-in security mechanisms
|
|
12
|
+
- 📱 **Cross-platform**: Support for browser and Node.js environments
|
|
13
|
+
|
|
14
|
+
## 📦 Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install surflion-service
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## 🔧 Usage
|
|
21
|
+
|
|
22
|
+
### Browser Environment
|
|
23
|
+
```html
|
|
24
|
+
<script src="node_modules/surflion-service/surflion.min.js"></script>
|
|
25
|
+
<script>
|
|
26
|
+
// SurfLion is now available globally
|
|
27
|
+
console.log(SurfLion);
|
|
28
|
+
</script>
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Node.js Environment
|
|
32
|
+
```javascript
|
|
33
|
+
const SurfLion = require('surflion-service');
|
|
34
|
+
console.log(SurfLion);
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## 📚 Documentation
|
|
38
|
+
|
|
39
|
+
For detailed API documentation and usage examples, please visit our [GitHub repository](https://github.com/surflionteam/surflion-service).
|
|
40
|
+
|
|
41
|
+
## 📄 License
|
|
42
|
+
|
|
43
|
+
MIT License
|
|
44
|
+
|
|
45
|
+
## 🤝 Contributing
|
|
46
|
+
|
|
47
|
+
Issues and Pull Requests are welcome!
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
**SurfLion Team** - Making real-time communication easier 🚀
|
package/package.json
CHANGED
|
@@ -1,14 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "surflion-service",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "surflion.js",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"description": "SurfLion WebRTC Service Library with integrated JsSIP for real-time communication",
|
|
5
|
+
"main": "surflion.min.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"surflion.min.js"
|
|
8
|
+
],
|
|
9
|
+
"keywords": [
|
|
10
|
+
"webrtc",
|
|
11
|
+
"sip",
|
|
12
|
+
"voip",
|
|
13
|
+
"surflion",
|
|
14
|
+
"jssip",
|
|
15
|
+
"communication",
|
|
16
|
+
"real-time",
|
|
17
|
+
"audio",
|
|
18
|
+
"video",
|
|
19
|
+
"calling"
|
|
20
|
+
],
|
|
21
|
+
"author": "SurfLion Team",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/surflionteam/surflion-service.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/surflionteam/surflion-service#readme",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/surflionteam/surflion-service/issues"
|
|
8
30
|
},
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=12.0.0"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"test": "echo \"No tests specified\" && exit 0"
|
|
13
36
|
}
|
|
14
37
|
}
|