Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rayhanmahardhika/asr-electron-react
https://github.com/rayhanmahardhika/asr-electron-react
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rayhanmahardhika/asr-electron-react
- Owner: rayhanmahardhika
- License: mit
- Created: 2021-09-22T14:29:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-21T04:34:04.000Z (over 3 years ago)
- Last Synced: 2023-09-17T12:04:02.272Z (over 1 year ago)
- Language: JavaScript
- Size: 262 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
## Minimal Electron, React and Webpack boilerplate
Minimal Electron, React, PostCSS and Webpack boilerplate to help you get started with building your next app.
### Table of contents
* [Install](#install)
* [Usage](#usage)
* [Add Sass](#add-sass)
* [Change app title](#change-app-title)
* [Contact and Support](#contact-and-support)
* [Code of Conduct](#code-of-conduct)
* [License](#license)### Install
#### Clone this repo
```
git clone https://github.com/alexdevero/electron-react-webpack-boilerplate.git
```#### Install dependencies
```
npm install
```
or
```
yarn
```### Usage
#### Run the app
```
npm run start
```
or
```
yarn start
```#### Build the app (automatic)
```
npm run package
```
or
```
yarn package
```#### Build the app (manual)
```
npm run build
```
or
```
yarn build
```#### Test the app (after `npm run build` || `yarn run build`)
```
npm run prod
```
```
yarn prod
```### Add Sass
Adding Sass to boilerplate requires updating webpack configs and adding necessary loaders.
1) To `webpack.build.config.js` and `webpack.dev.config.js` add new object to `rules`:
```JavaScript
{
test: /\.scss$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'sass-loader' }],
include: defaultInclude
}
```2) Install additional loaders for sass, `sass-loader` and `node-sass`.
3) Rename all CSS file to `.scss`.
### Change app title
This boilerplate uses [HTML Webpack Plugin](https://github.com/jantimon/html-webpack-plugin#options) to generate the HTML file of the app. Changing app title is possible only through webpack configs, `webpack.build.config.js` and `webpack.dev.config.js`. App title can be changed by adding objects of options.
In `webpack.build.config.js`:
```JavaScript
plugins: [
new HtmlWebpackPlugin({title: 'New app title '}),// Add this (line 41)
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: 'bundle.css',
chunkFilename: '[id].css'
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
}),
new BabiliPlugin()
],
```In `webpack.dev.config.js`:
```JavaScript
plugins: [
new HtmlWebpackPlugin({title: 'New app title '}),// Add this (line 36)
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('development')
})
],
```## Contact and Support
I want your feedback! Here's a list of different ways to me and request help:
* Report bugs and submit feature requests to [GitHub issues](https://github.com/alexdevero/electron-react-webpack-boilerplate/issues).* And do not forget to follow [@alexdevero](https://twitter.com/alexdevero) on Twitter!
If you feel generous and want to show some extra appreciation:
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
[buymeacoffee]: https://www.buymeacoffee.com/alexdevero
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png### Code of Conduct
[Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.
### License
MIT © [Alex Devero](https://alexdevero.com).