1.0.7 • Published 1 year ago

@vacantthinker/util_electron_vue_js v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

how to use ?

const {setupVueToElectron} = require('@vacantthinker/util_electron_vue_js');

const title = `electron index.html title`;
const dirNameElectron = 'xxxx-electron-project-path';
setupVueToElectron(title, dirNameElectron);

works

setupVueToElectron()

/**
 * npm run build (vite build) -->
 *
 * generate electron index.html -->
 *
 * generate electron renderer.js -->
 *
 * if exists xxx-electron public/ rmSync() -->
 *
 * copy vue dist/ ==> xxx-electron public/ -->
 *
 * end
 *
 * @param title index.html title
 * @param dirNameElectron
 */
function setupVueToElectron(
    title = 'index.html title',
    dirNameElectron = `xxx-electron`) {}

setupElectron_index_html()

/**
 * generate electron index.html
 *
 * just add
 *
 * <div id="app"></div>
 *
 * <script src="./renderer.js" type="module"></script>
 *
 *
 * @param title
 * @param pathTarget
 */
function setupElectron_index_html(
    title = 'index.html title',
    pathTarget = 'dist') {}

setupElectron_renderer_js()

/**
 * generate renderer.js
 * 
 * read dir assets/ forEach()
 * 
 * appendFile
 * 
 *    import './assets/home-view-xxx.js'
 *
 * @param pathTarget {String}
 */
function setupElectron_renderer_js(pathTarget = 'dist') {}

readEnvFile()

/**
 * read env file , eg: env.sh xxx.env
 * 
 * @param filename path env file
 * @param logObj default: false
 * @returns {{}}
 */
function readEnvFile(filename, logObj = false) {}

npmRunMakeOpenOutSquirrel()

/**
 * npm run make -->
 * 
 * then open out/make/squirrel.windows/x64/ dir
 */
function npmRunMakeOpenOutSquirrel(){}

how to install ?

npm install @vacantthinker/util_electron_vue_js -D
1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago