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

Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
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 31 May 2026

Related posts