Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@yoonit/nativescript-websocket
Advanced tools
Yoonit WebSocket plugin for Android and iOS to build modern apps with NativeScript
Build modern apps using NativeScript and WebSocket in Android and iOS
A NativeScript plugin to provide:
npm i -s @yoonit/nativescript-websocket
All the functionalities that the @yoonit/nativescript-websocket
provides is accessed through the YoonitWebSocket
object. Below we have the basic usage code, for more details, your can see the Methods or the Demo Vue.
main.js
import Vue from 'nativescript-vue'
import YoonitWebSocket from '@yoonit/nativescript-websocket/vue'
Vue.use(
YoonitWebSocket,
'wss://echo.websocket.org/',
{
protocol: '',
timeout: 1000,
headers: [],
reconnect: true,
debug: false,
proxy: {
address: '',
port: ''
}
}
)
After that, you can access the socket object in your entire project using this.$yoo.socket
App.vue
<template>
<Page @loaded="doLoaded"></Page>
</template>
<script>
export default {
data: () => ({
interval: null
}),
methods: {
doLoaded () {
// start the connection
this.$yoo.socket.open()
// declare all callback events
this.$yoo.socket.events({
open: this.doSocketOpen,
message: this.doReceivedMessage,
close: this.doSocketClose,
error: this.doSocketError
})
},
doPing () {
this.interval = setInterval(() => {
if (!this.$yoo.socket.getStatus()) {
return console.log('[YooSocket] Socket closed')
}
console.log("[YooSocket] Sending 'echo' message!")
// add your message/file to queue and call 'send' method
return this.$yoo.socket.push('echo')
}, 2000)
},
doSocketOpen ($socket) {
console.log("[YooSocket] Hey! I'm connected!")
clearInterval(this.interval)
// onOpen event calls your function
return this.doPing()
},
doSocketClose () {
// onClose event
return console.log('[YooSocket] Socket was closed')
},
doSocketError () {
// onError event
return console.log('[YooSocket] Socket had an error')
},
doReceivedMessage ($socket, message) {
// onMessage event
return console.log(`[YooSocket] Received Message: '${message}'!`)
},
}
}
</script>
Function | Parameters | Valid values | Return Type | Description |
---|---|---|---|---|
openAsync | timeout | any positive number, default 1000 (ms) | void | Wait timeout to start the connection |
open | - | - | void | Start immediately the connection |
on | event, callback | string, function | void | Include an event, every that your server sent an event of this type, your callback will be invoked |
off | event, callback | string, function | void | Exclude an event |
events | callbacks | object with functions { open: [], close: [], message: [], error: [], fragment: [], handshake: [] } | void | You can use an Array of callbacks in each event. Use this to add a batch of events at once |
getStatus | - | - | boolean | You can use this method to check the connection status |
push | content | string/blob | void | Send files or strings to server. You can use this method to make uploads for example |
destroy | - | - | void | Destroy server connection |
close | code, message | number, string | void | Close server connection programmatically offering an reason |
queueLength | - | - | number | Get the total pending items to be sent |
isOpen | - | - | boolean | Get connection status |
isClosed | - | - | boolean | Get connection status |
isClosing | - | - | boolean | Get connection status |
isConnecting | - | - | boolean | Get connection status |
Property | Return Type |
---|---|
protocol | string |
timeout | string |
headers | array |
reconnect | boolean |
debug | boolean |
proxy | object |
callbacks | object |
url | string |
opened | boolean |
Clone the repo, change what you want and send PR.
Contributions are always welcome!
Code with ❤ by the Cyberlabs AI Front-End Team
FAQs
Yoonit WebSocket plugin for Android and iOS to build modern apps with NativeScript
The npm package @yoonit/nativescript-websocket receives a total of 11 weekly downloads. As such, @yoonit/nativescript-websocket popularity was classified as not popular.
We found that @yoonit/nativescript-websocket demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.