扫一扫分享
当今的现代Web开发实践需要大量的设置,例如webpack捆绑代码,babel进行代码转换,整理(linting)eslint等等,以至于清单不胜枚举。不幸的是,在创建electron应用程序时,所有这些设置变得更加困难。其主要目的electron-webpack是通过一次简单的安装来消除所有的初步设置,以便您可以重新开始开发应用程序。
快速使用
# create a directory of your choice, and copy template using curl
mkdir my-project && cd my-project
curl -fsSL https://github.com/electron-userland/electron-webpack-quick-start/archive/master.tar.gz | tar -xz --strip-components 1
# or copy template using git clone
git clone https://github.com/electron-userland/electron-webpack-quick-start.git
cd electron-webpack-quick-start
rm -rf .git
# install dependencies
yarn
手机预览