1.0.2 • Published 6 years ago
@frameninja/ws-starter v1.0.2
Install
npm install
Usage
import { init } from "@frameninja/ws-starter"
init({
path: "wss://localhost:8080",
actions: {
hello: ({ name }) => {
console.log("Hello", name)
}
}
})
// When you will receive { action: "hello", payload: { name: "world" } }
// => Hello world