choje 5b81fff793 | 1 anno fa | |
---|---|---|
scripts | 1 anno fa | |
src | 1 anno fa | |
.gitignore | 1 anno fa | |
README.md | 1 anno fa | |
electron-builder.json | 1 anno fa | |
package-lock.json | 1 anno fa | |
package.json | 1 anno fa | |
postcss.config.js | 1 anno fa | |
tailwind.config.js | 1 anno fa | |
vite.config.js | 1 anno fa |
npm install
npm run dev
npm run dev # starts application with hot reload
npm run build # builds application, distributable files can be found in "dist" folder
# OR
npm run build:win # uses windows as build target
npm run build:mac # uses mac as build target
npm run build:linux # uses linux as build target
Optional configuration options can be found in the Electron Builder CLI docs.
- scripts/ # all the scripts used to build or serve your application, change as you like.
- src/
- main/ # Main thread (Electron application source)
- renderer/ # Renderer thread (VueJS application source)
If you have any files that you want to copy over to the app directory after installation, you will need to add those files in your src/main/static
directory.
/* Assumes src/main/static/myFile.txt exists */
import {app} from 'electron';
import {join} from 'path';
import {readFileSync} from 'fs';
const path = join(app.getAppPath(), 'static', 'myFile.txt');
const buffer = readFileSync(path);