npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vevedh/feathers-nitro

v0.5.0

Published

FeathersJS integration for Nuxt/Nitro with Express, Koa, Socket.IO, and multi-instance support

Downloads

240

Readme

@vevedh/feathers-nitro

npm version npm downloads License CI

Nitro adapter plugin for FeathersJS APIs. It integrates Feathers applications with Nuxt/Nitro through Express, Koa, or Socket.IO adapters and supports multiple adapter instances.

🏀 Online playground

Requirements

  • Node.js ^22.12.0, ^24.11.0, or >=26.0.0
  • Nuxt 4 / Nitro 2
  • FeathersJS 5

Install

pnpm add -D @vevedh/feathers-nitro

Equivalent commands:

npm install --save-dev @vevedh/feathers-nitro
# or
yarn add --dev @vevedh/feathers-nitro

Usage with Nuxt 4

Create a Nitro plugin in the server/plugins directory. Nuxt 4 keeps server code at the project root, while application UI code normally lives under app/.

Express adapter

// server/plugins/feathers-express.ts
import { createFeathersExpressAdapterNitroPlugin } from '@vevedh/feathers-nitro'
import { app } from 'feathers-api/src/app'

export default createFeathersExpressAdapterNitroPlugin(app)

See the Express fixture for a complete test setup.

Koa adapter

// server/plugins/feathers-koa.ts
import { createFeathersKoaAdapterNitroPlugin } from '@vevedh/feathers-nitro'
import { app } from 'feathers-api/src/app'

export default createFeathersKoaAdapterNitroPlugin(app)

See the Koa fixture for a complete test setup.

Socket.IO adapter

// server/plugins/feathers-socket.io.ts
import { createFeathersSocketIoAdapterNitroPlugin } from '@vevedh/feathers-nitro'
import { app } from 'feathers-api/src/app'

export default createFeathersSocketIoAdapterNitroPlugin(app)

See the Socket.IO fixture for a complete test setup.

Exported entry points

The package exposes the following public entry points:

import { /* adapter factories */ } from '@vevedh/feathers-nitro'
import { /* router helpers */ } from '@vevedh/feathers-nitro/routers'
import { /* plugin helpers */ } from '@vevedh/feathers-nitro/plugins'
import { /* request handlers */ } from '@vevedh/feathers-nitro/handlers'
import { /* setup helpers */ } from '@vevedh/feathers-nitro/setup'

The playground directory contains a Nuxt 4 example combining REST, Socket.IO, Pinia 3, and authentication without the obsolete nuxt-feathers-pinia auto-import layer.

Development

corepack enable
corepack prepare [email protected] --activate
pnpm install --frozen-lockfile
pnpm verify

pnpm verify validates package identity, lockfile portability, the Vitest retry classifier, strict TypeScript, ESLint, Feathers/Nuxt integration tests, and the npm tarball contents.

Dependency maintenance is based on Taze with a 14-day maturity period:

pnpm deps:check:recursive
pnpm deps:update:safe:recursive

Review Nuxt, Nitro, H3, TypeScript, Vitest, and other major upgrades independently before regenerating the lockfile.

Publishing

The package is configured as a public scoped npm package.

npm login --registry=https://registry.npmjs.org/
pnpm verify
pnpm publish --access public --registry=https://registry.npmjs.org/ --no-git-checks

Before publication, create the vevedh/feathers-nitro repository, authenticate with npm, and follow PUBLISHING.md. On Windows, ./scripts/publish-direct.ps1 validates the project, pushes main and v0.5.0, then publishes the public scoped package directly to npm.

Attribution

This repository is a maintained fork of @gabortorma/feathers-nitro-adapter. The original author is credited in package.json and LICENSE.

License

MIT