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

@eliushhimel/vite-plugin-mix

v1.2.0

Published

Adding backend API to your Vite app

Readme

💛 You can help the author become a full-time open-source maintainer by sponsoring him on GitHub. Originally created by EGOIST

vite-plugin-mix

npm version npm downloads

Motivation

Writing front-end and back-end API in a single project allows faster development (imo), this plugin essentially brings Next.js' API routes to your Vite app.

Update from vite-plugin-mix to @eliushhimel/vite-plugin-mix

This project has been renamed to @eliushhimel/vite-plugin-mix to avoid confusion with another project named vite-plugin-mix which is the origin of this package. I needed to use it and found that the original author @egoist no longer maintain the project, and the last update was for vite: ^3, so I decided to update it for the latest version. If you are using the old package, and after updating vite it stopped working then please uninstall it and install the new package:

npm uninstall vite-plugin-mix
npm install @eliushhimel/vite-plugin-mix -D

Supported Vite versions: ^7

Usage

vite.config.ts:

import { defineConfig } from 'vite'
import mix from '@eliushhimel/vite-plugin-mix'

export default defineConfig({
  plugins: [
    mix({
      handler: './handler.ts',
    }),
  ],
})

handler.ts:

import type { Handler } from '@eliushhimel/vite-plugin-mix'

export const handler: Handler = (req, res, next) => {
  if (req.path === '/hello') {
    return res.end('hello')
  }
  next()
}

The handler runs before serving static files, so you should make sure to call next() as a fallback. You can also use express-compatible middlewares in the handler.

To start developing, run the command vite as usual.

To create a production build, run the command vite build as usual.

Now vite build will create a server build to ./build folder alongside your regular client build which is the ./dist folder by default. To run the production build as a Node.js server, run node build/server.mjs or if you have "type": "module" in your package.json, run node build/server.js instead.

Request flow

Adapters

Node.js

By default the server is built for Node.js target, you can run node build/server.mjs or node build/server.js after vite build to start the production server.

By default the server runs at port 3000, you can switch to a custom port by using the PORT environment variable.

Vercel

Warning

This may not work with some packages in a monorepo when using pnpm.

To build for Vercel, use the vercelAdapter in vite.config.ts:

import { defineConfig } from 'vite'
import mix, { vercelAdapter } from '@eliushhimel/vite-plugin-mix'

export default defineConfig({
  plugins: [
    mix({
      handler: './handler.ts',
      adapter: vercelAdapter(),
    }),
  ],
})

Then you can run vite build to build for Vercel.

Guide

Using Express

import express from 'express'

const app = express()

export const handler = app

Using Polka

import polka from 'polka'

export const handler = (req, res, next) => {
  const app = polka({
    onNoMatch: () => next(),
  })

  return app.handler(req, res)
}

Using Apollo GraphQL

import { ApolloServer } from 'apollo-server-micro'
import { typeDefs } from './schemas'
import { resolvers } from './resolvers'

const apolloServer = new ApolloServer({ typeDefs, resolvers })

const GRAPHQL_ENDPOINT = '/api/graphql'

const apolloHandler = apolloServer.createHandler({ path: GRAPHQL_ENDPOINT })

export const handler = (req, res, next) => {
  if (req.path === '/api/graphql') {
    return apolloHandler
  }
  next()
}

You can also use express + apollo-server-express if you want.

Common Issues

Error: mix is not a function

I'll fix it later, but for now, this is caused by the way how the package is exported. The package is exported in a way that is compatible with both CommonJS and ES Modules, but sometimes TypeScript or your bundler might not interpret it correctly.

Workaround this issue by importing like this: TypeScript

import { defineConfig } from 'vite'
import mixPlugin, { Adapter } from '@eliushhimel/vite-plugin-mix'

interface MixConfig {
  handler: string
  adapter?: Adapter | undefined
}
type MixPlugin = (config: MixConfig) => Plugin

interface Mix {
  default: MixPlugin
}
const mix = (mixPlugin as unknown as Mix).default

export default defineConfig({
  plugins: [
    mix({
      handler: './handler.ts',
    }),
  ],
})

JavaScript

import mixPlugin from 'vite-plugin-mix'

const mix = mixPlugin.default

License

MIT ©