> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/legacy-osl-originos/networking/websockets/.wssend.md).

# wsSend

> ⚠️ **Not implemented in the current OSL CLI.**

## Description

wsSend allows you to send a message to a websocket.

## Parameters

* msg: The message to send to the websocket.

## Usage

```javascript
ws_id = "url".newWebsocket()

ws_id.wsSend("Hello, World!")
// this sends a message to the websocket connection
```
