All Projects → IndexXuan → vite-plugin-sleep

IndexXuan / vite-plugin-sleep

Licence: MIT license
a vite plugin you never need. slow devServer and slow HMR.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to vite-plugin-sleep

vite-plugin-inspect
Inspect the intermediate state of Vite plugins
Stars: ✭ 491 (+537.66%)
Mutual labels:  vite, vite-plugin
vite-plugin-webfont-dl
⚡ Webfont Download Vite Plugin - Make your Vite site load faster
Stars: ✭ 69 (-10.39%)
Mutual labels:  vite, vite-plugin
vite-plugin-checker
💬 Vite plugin that provide checks of TypeScript, ESLint, vue-tsc, and more.
Stars: ✭ 338 (+338.96%)
Mutual labels:  vite, vite-plugin
vite-plugin-relay
A vite plugin for Relay
Stars: ✭ 44 (-42.86%)
Mutual labels:  vite, vite-plugin
vite-plugin-dts
A vite plugin for generating `.d.ts` files.
Stars: ✭ 539 (+600%)
Mutual labels:  vite, vite-plugin
vite-plugin-compress
Compress your bundle + assets from Vite
Stars: ✭ 103 (+33.77%)
Mutual labels:  vite, vite-plugin
vite-plugin-md
Markdown with Vue for Vite
Stars: ✭ 289 (+275.32%)
Mutual labels:  vite, vite-plugin
vite-plugin-environment
Easily expose environment variables in Vite.js
Stars: ✭ 57 (-25.97%)
Mutual labels:  vite, vite-plugin
vite-plugin-restart
Custom files/globs to restart Vite server
Stars: ✭ 92 (+19.48%)
Mutual labels:  vite, vite-plugin
vite-plugin-html-template
html template for vite, like html-webpack-plugin for webpack.
Stars: ✭ 97 (+25.97%)
Mutual labels:  vite, vite-plugin
vite-plugin-banner
A banner plugin for Vite. It can adds a banner to the top of each generated chunk.
Stars: ✭ 39 (-49.35%)
Mutual labels:  vite, vite-plugin
vite-plugins
🌱 为社区尽一份绵薄之力
Stars: ✭ 63 (-18.18%)
Mutual labels:  vite, vite-plugin
vite-plugin-env-compatible
Environment Variables Compatible for vite(with vue-cli, create-react-app and so on)
Stars: ✭ 35 (-54.55%)
Mutual labels:  vite, vite-plugin
vite-plugin-radar
All in one analytics loader for vite
Stars: ✭ 64 (-16.88%)
Mutual labels:  vite, vite-plugin
vite-plugin-ssr
Like Next.js / Nuxt but as do-one-thing-do-it-well Vite plugin.
Stars: ✭ 1,703 (+2111.69%)
Mutual labels:  vite, vite-plugin
aria-vue
Testing tools for Vue components
Stars: ✭ 21 (-72.73%)
Mutual labels:  vite
duxravel
Duxravel 是基于 Laravel 框架和Arco Design Vue 开发的后台管理开发框架
Stars: ✭ 61 (-20.78%)
Mutual labels:  vite
react-vite-twin-macro
Just want to try react, vite and twin.macro
Stars: ✭ 17 (-77.92%)
Mutual labels:  vite
reactplate
[unmaintained] 🚀 A Minimal Setup & Fast Boilerplate for React.js with Vite.
Stars: ✭ 25 (-67.53%)
Mutual labels:  vite
electron-vite-boilerplate
📚 A Electron + Vite boilerplate of the nature of learning(source-code of vite-plugin-electron) / 学习性的样板工程(vite-plugin-electron源码)
Stars: ✭ 157 (+103.9%)
Mutual labels:  vite

vite-plugin-sleep

vite is too fast, we need to rest. a vite-plugin you never need.

NPM Publish npm version License: MIT

Motivation

  • In the old days with webpack, we had many times when we could compile with pay, and with vite it was so fast that we couldn't rest.
  • Time to take a nap in the vite.

Usage

yarn add vite-plugin-sleep
// vite.config.ts
import sleep from 'vite-plugin-sleep'

/** @see {@link https://vitejs.dev/config/} */
export default defineConfig({
  plugins: [
    // ...other plugins
    sleep(/* options */),
  ],
})

Options

{
  /**
   * DevServer start delay(ms)
   * @default 20000
   */
  devServerStartDelay: number
  /**
   * HMR delay(ms)
   * @default 3000
   */
  hmrDelay: number
}
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].