audit-automator-client v0.0.1
electron-react-typescript
A Boilerplate for an Easy Start with TypeScript, React, and Electron.
Electron application boilerplate based on React, Redux, and Webpack for rapid application development using TypeScript.
Install
Clone the repository with Git:
git clone --depth=1 git@github.com:Robinfr/electron-react-typescript.git <your-project-name>And then install the dependencies:
cd <your-project-name>
yarn installUsage
Both processes have to be started simultaneously in different console tabs:
yarn run start-renderer-dev
yarn run start-main-devThis will start the application with hot-reload so you can instantly start developing your application.
You can also run do the following to start both in a single process:
yarn run start-devPackaging
If on a new computer, first, add your developer certificate to the keychain on OS X: https://help.apple.com/xcode/mac/current/#/dev154b28f09
We use Electron builder to build and package the application. By default you can run the following to package for your current platform:
yarn run distThis will create a installer for your platform in the releases folder.
You can make builds for specific platforms (or multiple platforms) by using the options found here. E.g. building for all platforms (Windows, Mac, Linux):
yarn run dist -- -mwlHusky and Prettier
This project comes with both Husky and Prettier setup to ensure a consistent code style.
To change the code style, you can change the configuration in .prettierrc.
In case you want to get rid of this, you can removing the following from package.json:
- Remove
precommitfrom thescriptssection - Remove the
lint-stagedsection - Remove
lint-staged,prettier,eslint-config-prettier, andhuskyfrom thedevDependencies
Also remove all mentions of Prettier from the extends section in .eslintrc.json.
About this project
This project was set up from scratch but is heavily influenced by the Electron React Boilerplate project and React Redux TypeScript guide.
License
MIT © R. Franken
6 years ago