All Projects → patak-dev → vite-rollup-plugins

patak-dev / vite-rollup-plugins

Licence: MIT license
A compatibility list of rollup plugins for Vite 2 and test playground

Programming Languages

HTML
75241 projects
typescript
32286 projects
Vue
7211 projects

Projects that are alternatives of or similar to vite-rollup-plugins

portfolio
simple portfolio use vue3 and vite inspired by wrongakram
Stars: ✭ 22 (-71.05%)
Mutual labels:  vite
element-shuang
🎉基于 Vue3、element-plus、vite封装的后台管理系统模板,https://shuangda1018.github.io/element-shuang/#/table
Stars: ✭ 37 (-51.32%)
Mutual labels:  vite
tov-template
vite + vue3 + ts 开箱即用现代开发模板
Stars: ✭ 251 (+230.26%)
Mutual labels:  vite
reactjs-vite-tailwindcss-boilerplate
ReactJS + Vite boilerplate to be used with Tailwindcss.
Stars: ✭ 103 (+35.53%)
Mutual labels:  vite
vite-plugin-inspect
Inspect the intermediate state of Vite plugins
Stars: ✭ 491 (+546.05%)
Mutual labels:  vite
element-plus-admin
基于vite+ts+elementPlus
Stars: ✭ 361 (+375%)
Mutual labels:  vite
rollup-plugin-jscc
Conditional compilation and compile-time variable replacement for Rollup
Stars: ✭ 52 (-31.58%)
Mutual labels:  rollup-plugin
vue-frag-plugin
Webpack/Rollup/Vite plugin to add multiple root-node support to Vue 2 SFCs
Stars: ✭ 37 (-51.32%)
Mutual labels:  vite
vite-wiki
📄The Vite Wiki
Stars: ✭ 37 (-51.32%)
Mutual labels:  vite
nuxt3-app
Nuxt3 (Nuxt 3) best starter repo, Tailwindcss, Sass, Headless UI, Vue, Pinia, Vite
Stars: ✭ 252 (+231.58%)
Mutual labels:  vite
vite-primevue-starter
VUE 3 Starter project for using primevue 3 with Vite 2 - Pages, Layouts, Validation
Stars: ✭ 37 (-51.32%)
Mutual labels:  vite
admin-antd-vue
Vue3.x + Ant Design Admin template (vite/webpack)
Stars: ✭ 111 (+46.05%)
Mutual labels:  vite
rakkasjs
Lightning fast Next.js alternative powered by Vite
Stars: ✭ 527 (+593.42%)
Mutual labels:  vite
vite-vue3-starter
⭐ A Vite 2.x + Vue 3.x + TypeScript template starter
Stars: ✭ 384 (+405.26%)
Mutual labels:  vite
vite-vue-admin
🎉🎉使用Vite + Vue3 + TypeScript + Element-plus + Mock开发的后台管理系统🎉🎉
Stars: ✭ 97 (+27.63%)
Mutual labels:  vite
layui-vue
layui - vue(谐音:类 UI) 是 一 套 Vue 3.0 的 桌 面 端 组 件 库
Stars: ✭ 112 (+47.37%)
Mutual labels:  vite
vitesome
A simple opinionated Vue3 Starter Template with Vite.js
Stars: ✭ 124 (+63.16%)
Mutual labels:  vite
Hajime
Hajime - Competition software management for Fencing Martial Arts
Stars: ✭ 13 (-82.89%)
Mutual labels:  vite
vue2-timeago
🙌 A vue component used to format date with time ago statement. 💬
Stars: ✭ 76 (+0%)
Mutual labels:  vite
vue-vben-admin
A modern vue admin. It is based on Vue3, vite and TypeScript. It's fast!
Stars: ✭ 12,169 (+15911.84%)
Mutual labels:  vite

⚡️ Vite Rollup Plugins 🍣

A compatibility list and test playground

https://vite-rollup-plugins.patak.dev

status for each official plugin

⚠️ enforce needed badge

🛠️ install instructions

🧪 compatible plugins are used in the page

Run it locally

These instructions will get you a copy of the project up and running on your local machine for development

Clone the repo

Use ssh

git clone [email protected]:matias-capeletto/vite-rollup-plugins.git

Or https

git clone https://github.com/matias-capeletto/vite-rollup-plugins.git

In the repo folder run

yarn
yarn dev

Your dev server will start and be running at

  > Local:    http://localhost:3000/

To build

yarn build

Contributing

This is work in progress, there are some official plugins that remain untested. PRs welcomed.

Adding a Plugin

Start by adding your plugin to src/plugins folder. If you'd like your plugin to display a test component, then create a new file for it as YourPlugin.ts. Otherwise you can add it to OfficalPlugins.ts if it is an offical plugin or CommunityPlugins.ts if it is a community plugin.

When writing a plugin make sure you use the definePlugin function to define your plugin.

Example Plugin

import { definePlugin, PluginStatus, PluginCategory } from '~/util'
import PluginBeep from '~/components/official/PluginBeep.vue'

export default definePlugin({
  name: 'beep',
  description: 'System beeps on errors and warnings',
  category: PluginCategory.Official,
  status: PluginStatus.Compatible,
  demo: PluginBeep,
})

Links

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].