
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@davestewart/nuxt-sockets
Advanced tools
Nuxt wrapper for Vue 3 Perfect Scrollbar
Nuxt Sockets implements bidirectional sockets communication between Nitro and Nuxt.
It supports named channels making it ideal for plugin authors.
// server
const socket = useSocketServer('my-plugin')
socket.send('ping!')
// client
const socket = useSocketClient('my-plugin', ({ channel: string, data: any }) => {
console.log(data) // ping!
})
To view the demo live on StackBlitz:
To run the demo locally:
npm run dev
Installation:
npm install --save @davestewart/nuxt-sockets
Configuration:
export default defineNuxtConfig({
modules: [
'@davestewart/nuxt-sockets'
],
})
Here's how you might set up the server to watch some files, then report them to the frontend:
// module.ts
import { createStorage } from 'unstorage'
import { useSocketServer } from '@davestewart/nuxt-sockets'
export default function (options, nuxt) {
// create the server
const socket = useSocketServer('my-plugin')
// watch files for changes
const storage = createStorage(dirname)
storage.watch(function (event, key) => {
socket.send({ event, key })
})
// handle incoming messages
socket.onMessage(({ data }) => {
console.log('message:', data)
})
}
The client should take the same name as the server, so calls are sent between the two, and they don't clash with any other services using sockets.
export default defineNuxtPlugin(async () => {
if (process.client) {
// receive a message
const socket = await useSocketClient('my-plugin', ({ data }) => {
console.log('file changed', data)
})
// send a message
window.addEventListener('click', () => {
socket.send('user clicked')
})
}
})
You can create a Socket instance in several ways:
// generic server (not recommended)
const socket = useSocketServer()
// named server
const socket = useSocketServer('some-name')
// named server and default handler
const socket = useSocketServer('some-name', ({ channel, data }) => {
console.log({ channel, data })
})
// named server and filter handler
const socket = useSocketServer('some-name').addHandler<Bar>('foo', ({ data }) => {
console.log(data.baz)
})
The library also has some generic typing, so you can hint the return data type:
// example types
type Foo = { foo: string }
type Bar = { bar: string }
type Baz = { baz: string }
// hint the composable
const socket = useSocketServer<Foo>('plugin', ({ data }) => {
console.log(data.foo)
})
// hint the handler
const socket = useSocketServer<SomeClass>('plugin', ({ data }) => {
console.log(data.bar)
})
// hint the handler
const socket = useSocketServer<SomeClass>('plugin').addHandler<Bar>('foo', ({ data }) => {
console.log(data.baz)
})
The module supports basic filtering, but this may be taken out in the next version.
To develop the module:
# develop the module using the demo
npm run dev
# build and release (make sure to update version and changelog first)
npm run release
FAQs
WebSockets solution for Nuxt
We found that @davestewart/nuxt-sockets demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.