2.0.5 β€’ Published 3 days ago

electron-vite-tsup v2.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

Features

  • ⚑️ Vite powered and use the same way.
  • πŸ›  Pre-configured for Electron, don't worry about configuration.
  • πŸ’‘ Optimize asset handling (Node.js addons, WebAssembly, Worker Thread, etc).
  • πŸš€ Fast HMR for renderer processes.
  • πŸ”₯ Hot reloading for main process and preload scripts.
  • πŸ”Œ Easy to debug in IDEs like VSCode or WebStorm.
  • πŸ”’ Compile to v8 bytecode to protect source code.
  • 🏷️ Support for TypeScript decorators.
  • πŸ“¦ Out-of-the-box support for TypeScript, Vue, React, Svelte, SolidJS and more.

Usage

Install

npm i electron-vite-tsup -D

Development & Build

In a project where electron-vite-tsup is installed, you can use electron-vite-tsup binary directly with npx electron-vite or add the npm scripts to your package.json file like this:

{
  "scripts": {
    "start": "electron-vite-tsup preview",
    "dev": "electron-vite-tsup dev",
    "prebuild": "electron-vite-tsup build"
  }
}

Configuration

When running electron-vite-tsup from the command line, electron-vite-tsup will automatically try to resolve a config file named electron.vite.config.js inside project root. The most basic config file looks like this:

// electron.vite.config.js
export default {
  main: {
    // vite config options
  },
  preload: {
    // vite config options
  },
  renderer: {
    // vite config options
  }
}

Getting Started

Clone the electron-vite-boilerplate or use the create-electron tool to scaffold your project.

npm create @quick-start/electron

Currently supported template presets include:

JavaScriptTypeScript
vanillavanilla-ts
vuevue-ts
reactreact-ts
sveltesvelte-ts
solidsolid-ts

Contribution

See Contributing Guide.

License

MIT Β© alex.wei

2.0.5

3 days ago

2.0.3

2 months ago

2.0.4

2 months ago

2.0.2

2 months ago

2.0.1

3 months ago

2.0.0

3 months ago