电子-打包后刷新资源

时间:2019-03-15 08:58:54

标签: node.js electron

我的目标是构建一个电子应用程序,并能够轻松编辑打包应用程序中的资源,并查看打包应用程序中的更改而不必重新打包整个内容。

我正在使用电子伪造,构建后具有以下结构:

#include <stdio.h>
#define max 100

int main(){
  int a[max];
  int i,n;

  printf("Enter the number of persons: ");
  do{
    scanf("%i", &n);
  }while((n < 1) || (n > max));

  i = 0;
  while (i < n){
    printf("Enter the age of the %i th Person", i+1);
    scanf("%i", &a[i]);
    i = i + 1;
  }
 /* further code */

该应用程序正在使用.cache文件夹中的数据(并且根本不关心“ src”文件夹中的内容,我想知道为什么将此文件夹复制到软件包btw中)。

我想知道是否可以告诉电子使用src文件夹中的数据而不是.cache吗?

这个想法是创建一种能够执行一些javascript,Jquery和对文件系统的访问的基本应用程序。因此,我可以将此软件包提供给我的同事,他们可以修改源以使应用程序适应他们自己的需求,而无需在我自己的PC上安装所有我拥有的东西(nodejs,electron等)。

基本上,他们(和我)应该能够修改index.html,main.js,index.css,重新加载应用程序并查看更改。

电子有可能吗?如果可以,怎么办?

0 个答案:

没有答案