🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@feedthrough/nuxt

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feedthrough/nuxt

latest
Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
5
150%
Maintainers
1
Weekly downloads
 
Created
Source

@feedthrough/nuxt

feedthrough.dev · npm · GitHub

Nuxt 3 module for Feedthrough. Registers the Vite plugin when running in dev mode. Production builds (nuxt build) are unaffected.

Install

npm install --save-dev @feedthrough/nuxt

Usage

// nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    // Dev only — no-op in production builds.
    "@feedthrough/nuxt",
  ],
});

Options

Pass options via the feedthrough config key:

export default defineNuxtConfig({
  modules: ["@feedthrough/nuxt"],
  feedthrough: {
    serverUrl: "ws://localhost:8765", // default
    reconnectDelay: 2000,             // ms, default
  },
});

How it works

The module calls nuxt.options.dev and exits early when building for production. In dev mode it calls addVitePlugin(() => feedthrough(options)), which registers the @feedthrough/vite plugin — the same plugin used in standalone Vite projects.

Running alongside the MCP server

# Terminal 1 — app
nuxt dev

# Terminal 2 — MCP server
node node_modules/@feedthrough/mcp/dist/index.js

FAQs

Package last updated on 07 Jun 2026

Did you know?

Socket

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.

Install

Related posts