Git Product home page Git Product logo

electron-vue-vite's Introduction

electron-vue-vite

awesome-vite GitHub license GitHub stars GitHub forks

English | ็ฎ€ไฝ“ไธญๆ–‡

๐Ÿฅณ Very simple Electron + Vue3 + Vite2 boilerplate.

Overview

This is an Electron category integration template that pursues simplification.
This contains only the most basic files, the most basic dependencies, and the most basic functions. Instead of large and complex design.
The purpose of this is to ensure that the template is flexible enough.

For all that, I still hope that you have a basic understanding for Electron Vite. Because in addition to the simple structure of the project, the README also appears too simplify.

You can learn more details by looking at the source code. Trust me, this template is the simple enough. ๐Ÿ˜‹

Run Setup

# clone the project
git clone [email protected]:caoxiemeihao/electron-vue-vite.git

# enter the project directory
cd electron-vue-vite

# install dependency
npm install

# develop
npm run dev

Directory

Once dev or build npm-script executed will be generate named dist folder. It has children dir of same as src folder, the purpose of this design can ensure the correct path calculation.

โ”œ
โ”œโ”€โ”€ configs
โ”œ   โ”œโ”€โ”€ vite-main.config.ts          Main-process config file, for -> src/main
โ”œ   โ”œโ”€โ”€ vite-preload.config.ts       Preload-script config file, for -> src/preload
โ”œ   โ”œโ”€โ”€ vite-renderer.config.ts      Renderer-script config file, for -> src/renderer
โ”œ
โ”œโ”€โ”€ dist                             After build, it's generated according to the "src" directory
โ”œ   โ”œโ”€โ”€ main
โ”œ   โ”œโ”€โ”€ preload
โ”œ   โ”œโ”€โ”€ renderer
โ”œ
โ”œโ”€โ”€ scripts
โ”œ   โ”œโ”€โ”€ build.mjs                    Build script, for -> npm run build
โ”œ   โ”œโ”€โ”€ watch.mjs                    Develop script, for -> npm run dev
โ”œ
โ”œโ”€โ”€ src
โ”œ   โ”œโ”€โ”€ main                         Main-process source code
โ”œ   โ”œโ”€โ”€ preload                      Preload-script source code
โ”œ   โ”œโ”€โ”€ renderer                     Renderer-process source code
โ”œ

Use Electron, NodeJs API

๐Ÿšง By default, Electron don't support the use of API related to Electron and NodeJs in the Renderer-process, but someone still need to use it. If so, you can see the ๐Ÿ‘‰ npm-package vitejs-plugin-electron or another template electron-vite-boilerplate

All Electron, NodeJs API invoke passed Preload-script

  • src/preload/index.ts

    import fs from 'fs'
    import { contextBridge, ipcRenderer } from 'electron'
    
    // --------- Expose some API to Renderer-process. ---------
    contextBridge.exposeInMainWorld('fs', fs)
    contextBridge.exposeInMainWorld('ipcRenderer', ipcRenderer)
  • src/renderer/src/global.d.ts

    // Defined on the window
    interface Window {
      fs: typeof import('fs')
      ipcRenderer: import('electron').IpcRenderer
    }
  • src/renderer/src/main.ts

    // Use Electron, NodeJs API in Renderer-process
    console.log('fs', window.fs)
    console.log('ipcRenderer', window.ipcRenderer)

Main window

Wechat

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.