• Stars
    star
    2,799
  • Rank 15,636 (Top 0.4 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 3 years ago
  • Updated 30 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unified plugin system for Vite, Rollup, Webpack, esbuild, rolldown, and more

unplugin

npm version npm downloads License

Unified plugin system for build tools.

Currently supports:

Hooks

unplugin extends the excellent Rollup plugin API as the unified plugin interface and provides a compatible layer base on the build tools used with.

Supported
Hook Rollup Vite Webpack 4 Webpack 5 esbuild Rspack
enforce โŒ 1 โœ… โœ… โœ… โŒ 1 โœ…
buildStart โœ… โœ… โœ… โœ… โœ… โœ…
resolveId โœ… โœ… โœ… โœ… โœ… โŒ
loadInclude2 โœ… โœ… โœ… โœ… โœ… โœ…
load โœ… โœ… โœ… โœ… โœ… 3 โœ…
transformInclude2 โœ… โœ… โœ… โœ… โœ… โœ…
transform โœ… โœ… โœ… โœ… โœ… 3 โœ…
watchChange โœ… โœ… โœ… โœ… โŒ โŒ
buildEnd โœ… โœ… โœ… โœ… โœ… โœ…
writeBundle4 โœ… โœ… โœ… โœ… โœ… โœ…
  1. Rollup and esbuild do not support using enforce to control the order of plugins. Users need to maintain the order manually.
  2. Webpack's id filter is outside of loader logic; an additional hook is needed for better perf on Webpack. In Rollup and Vite, this hook has been polyfilled to match the behaviors. See for following usage examples.
  3. Although esbuild can handle both JavaScript and CSS and many other file formats, you can only return JavaScript in load and transform results.
  4. Currently, writeBundle is only serves as a hook for the timing. It doesn't pass any arguments.

Warning: The Rspack support is experimental. Future changes to Rspack integrations might not follow semver, please pin unplugin in your dependency when using. It's not recommended to use in production.

Hook Context

Supported
Hook Rollup Vite Webpack 4 Webpack 5 esbuild Rspack
this.parse โœ… โœ… โœ… โœ… โœ… โœ…
this.addWatchFile โœ… โœ… โœ… โœ… โŒ โŒ
this.emitFile5 โœ… โœ… โœ… โœ… โœ… โœ…
this.getWatchFiles โœ… โœ… โœ… โœ… โŒ โŒ
this.warn โœ… โœ… โœ… โœ… โœ… โœ…
this.error โœ… โœ… โœ… โœ… โœ… โœ…
  1. Currently, this.emitFile only supports the EmittedAsset variant.

Usage

import { createUnplugin } from 'unplugin'

export const unplugin = createUnplugin((options: UserOptions) => {
  return {
    name: 'unplugin-prefixed-name',
    // webpack's id filter is outside of loader logic,
    // an additional hook is needed for better perf on webpack
    transformInclude(id) {
      return id.endsWith('.vue')
    },
    // just like rollup transform
    transform(code) {
      return code.replace(/<template>/, '<template><div>Injected</div>')
    },
    // more hooks coming
  }
})

export const vitePlugin = unplugin.vite
export const rollupPlugin = unplugin.rollup
export const webpackPlugin = unplugin.webpack
export const rspackPlugin = unplugin.rspack
export const esbuildPlugin = unplugin.esbuild

Nested Plugins

Since v0.10.0, unplugin supports constructing multiple nested plugins to behave like a single one. For example:

Supported
Rollup Vite Webpack 4 Webpack 5 Rspack esbuild
โœ… >=3.16 โœ… โœ… โœ… โœ… โš ๏ธ7
  1. Rollup supports nested plugins since v3.1.0. Plugin aurthor should ask users to a have a Rollup version of >=3.1.0 when using nested plugins. For singe plugin format, unplugin works for any versions of Rollup.
  2. Since esbuild does not have a built-in transform phase, the transform hook of nested plugin will not work on esbuild yet. Other hooks like load or resolveId work fine. We will try to find a way to support it in the future.
Usage
import { createUnplugin } from 'unplugin'

export const unplugin = createUnplugin((options: UserOptions) => {
  return [
    {
      name: 'plugin-a',
      transform(code) {
        // ...
      },
    },
    {
      name: 'plugin-b',
      resolveId(id) {
        // ...
      },
    },
  ]
})

Plugin Installation

Vite
// vite.config.ts
import UnpluginFeature from './unplugin-feature'

export default {
  plugins: [
    UnpluginFeature.vite({ /* options */ }),
  ],
}
Rollup
// rollup.config.js
import UnpluginFeature from './unplugin-feature'

export default {
  plugins: [
    UnpluginFeature.rollup({ /* options */ }),
  ],
}
Webpack
// webpack.config.js
module.exports = {
  plugins: [
    require('./unplugin-feature').webpack({ /* options */ }),
  ],
}
esbuild
// esbuild.config.js
import { build } from 'esbuild'

build({
  plugins: [
    require('./unplugin-feature').esbuild({ /* options */ }),
  ],
})
Rspack
// rspack.config.js
module.exports = {
  plugins: [
    require('./unplugin-feature').rspack({ /* options */ }),
  ],
}

Framework-specific Logic

While unplugin provides compatible layers for some hooks, the functionality of it is limited to the common subset of the build's plugins capability. For more advanced framework-specific usages, unplugin provides an escape hatch for that.

export const unplugin = createUnplugin((options: UserOptions, meta) => {
  console.log(meta.framework) // 'vite' | 'rollup' | 'webpack' | 'rspack' | 'esbuild'

  return {
    // common unplugin hooks
    name: 'unplugin-prefixed-name',
    transformInclude(id) { /* ... */ },
    transform(code) { /* ... */ },

    // framework specific hooks
    vite: {
      // Vite plugin
      configureServer(server) {
        // configure Vite server
      },
      // ...
    },
    rollup: {
      // Rollup plugin
    },
    webpack(compiler) {
      // configure Webpack compiler
    },
    rspack(compiler) {
      // configure Rspack compiler
    },
    esbuild: {
      // change the filter of onResolve and onLoad
      onResolveFilter?: RegExp,
      onLoadFilter?: RegExp,
      // or you can completely replace the setup logic
      setup?: EsbuildPlugin.setup,
    },
  }
})

Creating platform specific plugins

The package exports a set of functions in place of createUnplugin that allow for the creation of plugins for specific bundlers. Each of the function takes the same generic factory argument as createUnplugin.

import {
  creteEsbuildPlugin,
  getRollupPlugin,
  getRspackPlugin,
  getVitePlugin,
  getWebpackPlugin
} from 'unplugin'

const vitePlugin = getVitePlugin({ /* options */ })
const rollupPlugin = getRollupPlugin({ /* options */ })
const esbuildPlugin = creteEsbuildPlugin({ /* options */ })
const webpackPlugin = getWebpackPlugin({ /* options */ })
const rspackPlugin = getRspackPlugin({ /* options */ })

Conventions

  • Plugins powered by unplugin should have a clear name with unplugin- prefix.

  • Include unplugin keyword in package.json.

  • To provide better DX, packages could export 2 kinds of entry points:

    • Default export: the returned value of createUnplugin function

      import UnpluginFeature from 'unplugin-feature'
    • Subpath exports: properties of the returned value of createUnplugin function for each framework users

      import VitePlugin from 'unplugin-feature/vite'
    • Refer to unplugin-starter for more details about this setup.

Starter Templates

Community Showcases

License

MIT License ยฉ 2021-PRESENT Nuxt Contrib

More Repositories

1

consola

๐Ÿจ Elegant Console Logger for Node.js and Browser
TypeScript
5,424
star
2

nitro

Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.
TypeScript
4,941
star
3

magic-regexp

A compiled-away, type-safe, readable RegExp alternative
TypeScript
3,531
star
4

ofetch

๐Ÿ˜ฑ A better fetch API. Works on node, browser and workers.
TypeScript
3,106
star
5

h3

โšก๏ธ Minimal H(TTP) framework built for high performance and portability
TypeScript
2,910
star
6

magicast

๐Ÿง€ Programmatically modify JavaScript and TypeScript source codes with a simplified, elegant and familiar syntax powered by recast and babel.
TypeScript
2,112
star
7

webpackbar

Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
TypeScript
2,041
star
8

unbuild

๐Ÿ“ฆ An unified javascript build system
TypeScript
1,989
star
9

unstorage

๐Ÿ’พ Unstorage provides an async Key-Value storage API with conventional features like multi driver mounting, watching and working with metadata, dozens of built-in drivers and a tiny core.
TypeScript
1,406
star
10

fontaine

Automatic font fallback based on font metrics
TypeScript
1,388
star
11

jiti

Runtime Typescript and ESM support for Node.js
TypeScript
1,284
star
12

ipx

๐Ÿ–ผ๏ธ High performance, secure and easy-to-use image optimizer.
TypeScript
1,070
star
13

destr

๐Ÿš€ Faster, secure and convenient alternative for JSON.parse
TypeScript
894
star
14

ufo

๐Ÿ”— URL utils for humans
TypeScript
888
star
15

untun

๐Ÿš‡ Tunnel your local HTTP(s) server to the world! powered by Cloudflare Quick Tunnels.
TypeScript
853
star
16

defu

๐ŸŒŠ Assign default properties recursively
TypeScript
828
star
17

changelogen

๐Ÿ’… Beautiful Changelogs using Conventional Commits
TypeScript
745
star
18

hookable

๐Ÿช Awaitable Hooks
TypeScript
593
star
19

citty

๐ŸŒ† Elegant CLI Builder
TypeScript
533
star
20

unhead

Unhead is the any-framework document head manager built for performance and delightful developer experience.
TypeScript
501
star
21

ohash

Super fast hashing library based on murmurhash3 written in Vanilla JS
JavaScript
460
star
22

unimport

Unified utils for auto importing APIs in modules.
TypeScript
433
star
23

uqr

Generate QR Code universally, in any runtime, to ANSI, Unicode or SVG.
TypeScript
401
star
24

mlly

๐Ÿค Common ECMAScript module utils
TypeScript
398
star
25

ungh

๐Ÿ™ Unlimited access to github API
TypeScript
383
star
26

nypm

๐ŸŒˆ Unified Package Manager for Node.js and Bun
TypeScript
379
star
27

std-env

Runtime Agnostic JS utils
TypeScript
373
star
28

untyped

Generate types and markdown from a config object.
TypeScript
372
star
29

c12

โš™๏ธ Smart Configuration Loader
TypeScript
367
star
30

listhen

๐Ÿ‘‚ Elegant HTTP Listener
TypeScript
363
star
31

giget

โœจ Download templates and git repositories with pleasure!
TypeScript
353
star
32

radix3

๐ŸŒณ Lightweight and fast router for JavaScript based on Radix Tree
TypeScript
348
star
33

unctx

๐Ÿฆ Composables in vanilla JS
TypeScript
348
star
34

pathe

๐Ÿ›ฃ๏ธ Drop-in replacement of the Node.js's path module module that ensures paths are normalized
TypeScript
332
star
35

mkdist

Lightweight file-to-file transpiler.
TypeScript
304
star
36

unpdf

๐Ÿ“„ Utilities to work with PDFs in Node.js, browser and workers
TypeScript
284
star
37

unenv

๐Ÿ•Š๏ธ Convert javaScript code to be runtime agnostic
TypeScript
282
star
38

scule

๐Ÿงต String Case Utils
TypeScript
268
star
39

knitwork

Utilities to generate JavaScript code.
TypeScript
224
star
40

rc9

Read/Write config couldn't be easier!
TypeScript
216
star
41

get-port-please

๐Ÿ”Œ Get an available open port
TypeScript
204
star
42

lmify

๐Ÿค™ Install NPM dependencies programmatically (please switch to unjs/nypm)
JavaScript
200
star
43

theme-colors

๐ŸŽจ Easily generate color shades for themes
TypeScript
185
star
44

runtime-compat

Display APIs compatibility across different JavaScript runtimes
Vue
185
star
45

perfect-debounce

Debounce promise-returning & async functions.
TypeScript
171
star
46

pkg-types

Node.js utilities and TypeScript definitions for package.json and tsconfig.json
TypeScript
170
star
47

unkit

๐Ÿ“™ UnJS standard library
TypeScript
168
star
48

crossws

๐Ÿ”Œ Cross-platform WebSocket Servers for Node.js, Deno, Bun and Cloudflare Workers.
TypeScript
167
star
49

uncrypto

Single API for Web Crypto API and Crypto Subtle working in Node.js, Browsers and other runtimes
TypeScript
154
star
50

httpxy

๐Ÿ”€ A Full-Featured HTTP and WebSocket Proxy for Node.js
TypeScript
149
star
51

serve-placeholder

โ™ก Smart placeholder for missing assets
TypeScript
144
star
52

node-fetch-native

better fetch for Node.js. Works on any JavaScript runtime!
TypeScript
141
star
53

template

๐Ÿ“‹ UnJS Project Starter Template
TypeScript
136
star
54

unwasm

๐Ÿ‡ผ WebAssembly tools for JavaScript
JavaScript
128
star
55

website

UnJS website Content and Design!
Vue
116
star
56

db0

๐Ÿ“š Lightweight SQL Connector
TypeScript
111
star
57

mongoz

๐Ÿฅญ Zero Config MongoDB Server
TypeScript
102
star
58

automd

๐Ÿค– Automated markdown maintainer
TypeScript
100
star
59

cookie-es

๐Ÿช Cookie Serializer and Deserializer
TypeScript
97
star
60

redirect-ssl

Connect/Express middleware to enforce https using is-https
TypeScript
96
star
61

jimp-compact

โœ๏ธ Lightweight version of Jimp -- An image processing library written entirely in JavaScript for Node.js
TypeScript
91
star
62

nanotar

๐Ÿ“ผ Tiny and fast tar utils for any JavaScript runtime!
TypeScript
80
star
63

undocs

Minimal Documentation theme and CLI for shared usage across UnJS projects.
Vue
76
star
64

mdbox

โฌ‡ Just simple markdown utils
JavaScript
58
star
65

items-promise

Bare minimum async methods using promises
JavaScript
51
star
66

image-meta

Detect image type and size using pure javascript.
TypeScript
51
star
67

nitro-deploys

Nitro Deployments Testing
TypeScript
45
star
68

compat-flags

๐ŸŒด Gradual feature flags.
TypeScript
45
star
69

confbox

Compact and high quality YAML, TOML, JSONC and JSON5 parsers
TypeScript
38
star
70

ezpass

Dead simple password protection middleware
TypeScript
33
star
71

workbox-cdn

Workbox Unofficial CDN and standalone NPM package.
Shell
30
star
72

rollup-plugin-node-deno

Convert NodeJS to Deno compatible code with rollup
TypeScript
29
star
73

externality

TypeScript
28
star
74

create-require

Polyfill for Node.js module.createRequire (<= v12.2.0)
JavaScript
27
star
75

requrl

Grab full URL from request.
TypeScript
26
star
76

is-https

Check if the given request is HTTPS
TypeScript
26
star
77

bundle-runner

Run webpack bundles in Node.js with optional VM sandboxing
TypeScript
21
star
78

eslint-config

๐Ÿ“– Shared ESLint config for unjs repositories
JavaScript
20
star
79

fs-memo

Easy persisted memo object for Node.js
TypeScript
18
star
80

nitro-starter

Nitro starter template
TypeScript
16
star
81

nitro-preset-starter

TypeScript
15
star
82

governance

UnJS Governance Notes
14
star
83

community

UnJS Community Notes
14
star
84

renovate-config

13
star
85

.github

Community Health Files
8
star
86

unjs.github.io

HTML
4
star
87

html-validate-es

TypeScript
4
star